summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/StringRef.h
Commit message (Expand)AuthorAge
* Add asserts in StringRef to make sure we avoid undefined behavior:Argyrios Kyrtzidis2011-05-20
* Add an operator+= for appending StringRefs onto std::strings.John McCall2011-05-13
* Remove bounded StringRef::compare() since nothing but Clang SA was using it a...Lenny Maiorani2011-04-28
* Implements StringRef::compare with bounds. It is behaves similarly to strncmp...Lenny Maiorani2011-04-15
* Support/ADT/StringRef: Add find_last_of.Michael J. Spencer2010-11-30
* StringRefs are POD-like.Benjamin Kramer2010-11-26
* Fix Whitespace.Michael J. Spencer2010-11-26
* Extend StringRef's edit-distance algorithm to permit an upper bound on the al...Douglas Gregor2010-10-19
* Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef).Benjamin Kramer2010-08-23
* StringRef tweaks:Benjamin Kramer2010-08-23
* Don't pass in a null pointer to std::string's ctor, an empty stringChris Lattner2010-08-18
* Add StringRef::compare_numeric and use it to sort TableGen register records.Jakob Stoklund Olesen2010-05-26
* These functions don't need to access this.Dan Gohman2010-04-19
* Add an override to StringRef::getAsInteger which parses into an APInt.John McCall2010-02-28
* Fix various doxygen warnings.Dan Gohman2010-02-22
* give StringRef a const_iterator member.Chris Lattner2010-01-13
* Fix occurrence typoKovarththanan Rajaratnam2010-01-07
* Implement edit distance for StringRefDouglas Gregor2009-12-30
* Change StringRef::startswith and StringRef::endswith to versions which are aEli Friedman2009-12-21
* Remove the now obsolete algorithm include from StringRef.h.Benjamin Kramer2009-11-19
* Workaround PR5482, because all the gcc versions that I had were miscompiling ...Torok Edwin2009-11-19
* Fix unused variables warnings.Eric Christopher2009-11-16
* Use .data() instead of .c_str() when nul-termination is not needed.Dan Gohman2009-11-13
* Switch to smallvector. Also fix issue with using unsigend for MaxSplit.Rafael Espindola2009-11-13
* Add a new split method to StringRef that puts the substrings in a vector.Rafael Espindola2009-11-13
* StringRef(const char*) should not be used to turn null pointers into emptyDaniel Dunbar2009-11-12
* Add compare_lower and equals_lower methods to StringRef. Switch all users ofBenjamin Kramer2009-11-12
* Add StringRef::split(StringRef), to complement StringRef::split(char).Daniel Dunbar2009-11-11
* Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar2009-11-11
* Pass StringRef by value.Daniel Dunbar2009-11-06
* size_t, not unsigned here to silence a warning.Eric Christopher2009-10-22
* Don't use identifiers that start with an underscore followedDan Gohman2009-10-01
* Create empty StringRef is incoming cstring is NULL.Devang Patel2009-09-29
* write rfind in terms of npos as daniel requestedChris Lattner2009-09-20
* move a couple non-trivial methods out of line, add new Chris Lattner2009-09-20
* add size_t and a version of rfind that allows specification of whereChris Lattner2009-09-20
* add some more overloads of StringRef::getAsInteger forChris Lattner2009-09-19
* provide a "strtoull" operation that works on StringRef's.Chris Lattner2009-09-19
* Add StringRef::{rfind, rsplit}Daniel Dunbar2009-09-16
* Fix pasto in StringRef::count(char)Daniel Dunbar2009-08-18
* Add StringRef::count({char,StringRef})Daniel Dunbar2009-08-18
* Add StringRef::front (with some small tweaks while I was in the area).Daniel Dunbar2009-08-13
* StringRef: Add find(char) and find(StringRef).Daniel Dunbar2009-08-11
* add a simple back() method to StringRef.Chris Lattner2009-08-10
* Add StringRef::endswithDaniel Dunbar2009-08-05
* Use the RHS length instead of the LHS length. They are both the same,Chris Lattner2009-07-26
* Add StringRef::{slice, split}, two convenient string operations which are simpleDaniel Dunbar2009-07-26
* Define npos in a way that should make MSVC happier.Daniel Dunbar2009-07-22
* Add missing includeDaniel Dunbar2009-07-21
* Move StringRef comparison operators out of class.Daniel Dunbar2009-07-21