aboutsummaryrefslogtreecommitdiffstats
path: root/include/llvm/ADT/StringRef.h
Commit message (Expand)AuthorAgeFilesLines
* Commit a no-op change to StringRef to (hopefully) trigger build bots.Chandler Carruth2013-08-071-1/+1
* Use a non-c'tor for converting a boolean into a StringRef.Bill Wendling2013-07-261-4/+4
* Add a bool->StringRef c'tor to StringRef.Bill Wendling2013-07-251-0/+4
* Revert r185852.Manman Ren2013-07-081-8/+0
* StringRef: add DenseMapInfo for StringRef.Manman Ren2013-07-081-0/+8
* Replaced usages of size_type with size_t to be more consistent.Aaron Ballman2013-05-021-8/+8
* fix windows warning. Peng Cheng2013-05-011-2/+2
* Test commit. Remove trailing whitespace.Matt Arsenault2013-02-261-3/+3
* Remove redundant 'llvm::' qualificationsDmitri Gribenko2013-01-131-1/+1
* Sort the #include lines for the include/... tree with the script.Chandler Carruth2012-12-031-1/+0
* Fix Doxygen issues:Dmitri Gribenko2012-09-131-83/+80
* Add some missing includes for the build against stdcxx.Joerg Sonnenberger2012-08-101-0/+1
* Add doxygen comments.Michael J. Spencer2012-05-111-0/+6
* [Support/StringRef] Add find_last_not_of and {r,l,}trim.Michael J. Spencer2012-05-111-0/+22
* Make StringRef::getAsInteger work with all integer types. Before this changeMichael J. Spencer2012-03-101-7/+32
* Add generic support for hashing StringRef objects using the new hashing library.Chandler Carruth2012-03-041-0/+4
* add ::drop_back() and ::drop_front() methods, which are like pop_front/pop_ba...Chris Lattner2012-01-241-0/+14
* ADT/StringRef: Add ::lower() and ::upper() methods.Daniel Dunbar2011-11-061-0/+10
* Add asserts in StringRef to make sure we avoid undefined behavior:Argyrios Kyrtzidis2011-05-201-7/+20
* Add an operator+= for appending StringRefs onto std::strings.John McCall2011-05-131-0/+4
* Remove bounded StringRef::compare() since nothing but Clang SA was using it a...Lenny Maiorani2011-04-281-6/+0
* Implements StringRef::compare with bounds. It is behaves similarly to strncmp...Lenny Maiorani2011-04-151-0/+6
* Support/ADT/StringRef: Add find_last_of.Michael J. Spencer2010-11-301-0/+12
* StringRefs are POD-like.Benjamin Kramer2010-11-261-0/+4
* Fix Whitespace.Michael J. Spencer2010-11-261-1/+1
* Extend StringRef's edit-distance algorithm to permit an upper bound on the al...Douglas Gregor2010-10-191-1/+6
* Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef).Benjamin Kramer2010-08-231-2/+2
* StringRef tweaks:Benjamin Kramer2010-08-231-2/+4
* Don't pass in a null pointer to std::string's ctor, an empty stringChris Lattner2010-08-181-1/+4
* 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