| Commit message (Expand) | Author | Age | Files | Lines |
* | Support/ADT/StringRef: Add find_last_of. | Michael J. Spencer | 2010-11-30 | 1 | -0/+12 |
* | StringRefs are POD-like. | Benjamin Kramer | 2010-11-26 | 1 | -0/+4 |
* | Fix Whitespace. | Michael J. Spencer | 2010-11-26 | 1 | -1/+1 |
* | Extend StringRef's edit-distance algorithm to permit an upper bound on the al... | Douglas Gregor | 2010-10-19 | 1 | -1/+6 |
* | Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef). | Benjamin Kramer | 2010-08-23 | 1 | -2/+2 |
* | StringRef tweaks: | Benjamin Kramer | 2010-08-23 | 1 | -2/+4 |
* | Don't pass in a null pointer to std::string's ctor, an empty string | Chris Lattner | 2010-08-18 | 1 | -1/+4 |
* | Add StringRef::compare_numeric and use it to sort TableGen register records. | Jakob Stoklund Olesen | 2010-05-26 | 1 | -0/+4 |
* | These functions don't need to access this. | Dan Gohman | 2010-04-19 | 1 | -2/+2 |
* | Add an override to StringRef::getAsInteger which parses into an APInt. | John McCall | 2010-02-28 | 1 | -0/+14 |
* | Fix various doxygen warnings. | Dan Gohman | 2010-02-22 | 1 | -1/+1 |
* | give StringRef a const_iterator member. | Chris Lattner | 2010-01-13 | 1 | -9/+3 |
* | Fix occurrence typo | Kovarththanan Rajaratnam | 2010-01-07 | 1 | -8/+8 |
* | Implement edit distance for StringRef | Douglas Gregor | 2009-12-30 | 1 | -0/+16 |
* | Change StringRef::startswith and StringRef::endswith to versions which are a | Eli Friedman | 2009-12-21 | 1 | -2/+4 |
* | Remove the now obsolete algorithm include from StringRef.h. | Benjamin Kramer | 2009-11-19 | 1 | -1/+1 |
* | Workaround PR5482, because all the gcc versions that I had were miscompiling ... | Torok Edwin | 2009-11-19 | 1 | -7/+20 |
* | Fix unused variables warnings. | Eric Christopher | 2009-11-16 | 1 | -1/+1 |
* | Use .data() instead of .c_str() when nul-termination is not needed. | Dan Gohman | 2009-11-13 | 1 | -1/+1 |
* | Switch to smallvector. Also fix issue with using unsigend for MaxSplit. | Rafael Espindola | 2009-11-13 | 1 | -10/+4 |
* | Add a new split method to StringRef that puts the substrings in a vector. | Rafael Espindola | 2009-11-13 | 1 | -0/+27 |
* | StringRef(const char*) should not be used to turn null pointers into empty | Daniel Dunbar | 2009-11-12 | 1 | -1/+1 |
* | Add compare_lower and equals_lower methods to StringRef. Switch all users of | Benjamin Kramer | 2009-11-12 | 1 | -0/+8 |
* | Add StringRef::split(StringRef), to complement StringRef::split(char). | Daniel Dunbar | 2009-11-11 | 1 | -0/+17 |
* | Add From arguments to StringRef search functions, and tweak doxyments. | Daniel Dunbar | 2009-11-11 | 1 | -11/+19 |
* | Pass StringRef by value. | Daniel Dunbar | 2009-11-06 | 1 | -13/+13 |
* | size_t, not unsigned here to silence a warning. | Eric Christopher | 2009-10-22 | 1 | -26/+26 |
* | Don't use identifiers that start with an underscore followed | Dan Gohman | 2009-10-01 | 1 | -2/+2 |
* | Create empty StringRef is incoming cstring is NULL. | Devang Patel | 2009-09-29 | 1 | -1/+1 |
* | write rfind in terms of npos as daniel requested | Chris Lattner | 2009-09-20 | 1 | -6/+4 |
* | move a couple non-trivial methods out of line, add new | Chris Lattner | 2009-09-20 | 1 | -39/+23 |
* | add size_t and a version of rfind that allows specification of where | Chris Lattner | 2009-09-20 | 1 | -3/+9 |
* | add some more overloads of StringRef::getAsInteger for | Chris Lattner | 2009-09-19 | 1 | -1/+3 |
* | provide a "strtoull" operation that works on StringRef's. | Chris Lattner | 2009-09-19 | 1 | -0/+17 |
* | Add StringRef::{rfind, rsplit} | Daniel Dunbar | 2009-09-16 | 1 | -2/+48 |
* | Fix pasto in StringRef::count(char) | Daniel Dunbar | 2009-08-18 | 1 | -1/+1 |
* | Add StringRef::count({char,StringRef}) | Daniel Dunbar | 2009-08-18 | 1 | -0/+22 |
* | Add StringRef::front (with some small tweaks while I was in the area). | Daniel Dunbar | 2009-08-13 | 1 | -1/+8 |
* | StringRef: Add find(char) and find(StringRef). | Daniel Dunbar | 2009-08-11 | 1 | -15/+47 |
* | add a simple back() method to StringRef. | Chris Lattner | 2009-08-10 | 1 | -0/+5 |
* | Add StringRef::endswith | Daniel Dunbar | 2009-08-05 | 1 | -0/+5 |
* | Use the RHS length instead of the LHS length. They are both the same, | Chris Lattner | 2009-07-26 | 1 | -1/+1 |
* | Add StringRef::{slice, split}, two convenient string operations which are simple | Daniel Dunbar | 2009-07-26 | 1 | -3/+38 |
* | Define npos in a way that should make MSVC happier. | Daniel Dunbar | 2009-07-22 | 1 | -1/+1 |
* | Add missing include | Daniel Dunbar | 2009-07-21 | 1 | -0/+1 |
* | Move StringRef comparison operators out of class. | Daniel Dunbar | 2009-07-21 | 1 | -16/+38 |
* | Add StringRef::{substr, startswith}. | Daniel Dunbar | 2009-07-21 | 1 | -1/+27 |
* | Add StringRef class, with fixes. | Daniel Dunbar | 2009-07-21 | 1 | -0/+127 |