aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/StringRef.h
Commit message (Expand)AuthorAgeFilesLines
* Add StringRef::compare_numeric and use it to sort TableGen register records.Jakob Stoklund Olesen2010-05-261-0/+4
* These functions don't need to access this.Dan Gohman2010-04-191-2/+2
* Add an override to StringRef::getAsInteger which parses into an APInt.John McCall2010-02-281-0/+14
* Fix various doxygen warnings.Dan Gohman2010-02-221-1/+1
* give StringRef a const_iterator member.Chris Lattner2010-01-131-9/+3
* Fix occurrence typoKovarththanan Rajaratnam2010-01-071-8/+8
* Implement edit distance for StringRefDouglas Gregor2009-12-301-0/+16
* Change StringRef::startswith and StringRef::endswith to versions which are aEli Friedman2009-12-211-2/+4
* Remove the now obsolete algorithm include from StringRef.h.Benjamin Kramer2009-11-191-1/+1
* Workaround PR5482, because all the gcc versions that I had were miscompiling ...Torok Edwin2009-11-191-7/+20
* Fix unused variables warnings.Eric Christopher2009-11-161-1/+1
* Use .data() instead of .c_str() when nul-termination is not needed.Dan Gohman2009-11-131-1/+1
* Switch to smallvector. Also fix issue with using unsigend for MaxSplit.Rafael Espindola2009-11-131-10/+4
* Add a new split method to StringRef that puts the substrings in a vector.Rafael Espindola2009-11-131-0/+27
* StringRef(const char*) should not be used to turn null pointers into emptyDaniel Dunbar2009-11-121-1/+1
* Add compare_lower and equals_lower methods to StringRef. Switch all users ofBenjamin Kramer2009-11-121-0/+8
* Add StringRef::split(StringRef), to complement StringRef::split(char).Daniel Dunbar2009-11-111-0/+17
* Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar2009-11-111-11/+19
* Pass StringRef by value.Daniel Dunbar2009-11-061-13/+13
* size_t, not unsigned here to silence a warning.Eric Christopher2009-10-221-26/+26
* Don't use identifiers that start with an underscore followedDan Gohman2009-10-011-2/+2
* Create empty StringRef is incoming cstring is NULL.Devang Patel2009-09-291-1/+1
* write rfind in terms of npos as daniel requestedChris Lattner2009-09-201-6/+4
* move a couple non-trivial methods out of line, add new Chris Lattner2009-09-201-39/+23
* add size_t and a version of rfind that allows specification of whereChris Lattner2009-09-201-3/+9
* add some more overloads of StringRef::getAsInteger forChris Lattner2009-09-191-1/+3
* provide a "strtoull" operation that works on StringRef's.Chris Lattner2009-09-191-0/+17
* Add StringRef::{rfind, rsplit}Daniel Dunbar2009-09-161-2/+48
* Fix pasto in StringRef::count(char)Daniel Dunbar2009-08-181-1/+1
* Add StringRef::count({char,StringRef})Daniel Dunbar2009-08-181-0/+22
* Add StringRef::front (with some small tweaks while I was in the area).Daniel Dunbar2009-08-131-1/+8
* StringRef: Add find(char) and find(StringRef).Daniel Dunbar2009-08-111-15/+47
* add a simple back() method to StringRef.Chris Lattner2009-08-101-0/+5
* Add StringRef::endswithDaniel Dunbar2009-08-051-0/+5
* Use the RHS length instead of the LHS length. They are both the same,Chris Lattner2009-07-261-1/+1
* Add StringRef::{slice, split}, two convenient string operations which are simpleDaniel Dunbar2009-07-261-3/+38
* Define npos in a way that should make MSVC happier.Daniel Dunbar2009-07-221-1/+1
* Add missing includeDaniel Dunbar2009-07-211-0/+1
* Move StringRef comparison operators out of class.Daniel Dunbar2009-07-211-16/+38
* Add StringRef::{substr, startswith}.Daniel Dunbar2009-07-211-1/+27
* Add StringRef class, with fixes.Daniel Dunbar2009-07-211-0/+127