summaryrefslogtreecommitdiff
path: root/include/llvm/ADT/StringRef.h
Commit message (Expand)AuthorAge
* Roll back the ConstStringRef change for nowAlp Toker2014-01-27
* Move true/false StringRef helper to StringExtrasAlp Toker2014-01-27
* StringRef: Extend constexpr capabilities and introduce ConstStringRefAlp Toker2014-01-27
* Add {start,end}with_lower methods to StringRef.Rui Ueyama2013-10-30
* Added const qualifier to StringRef::edit_distance member functionDmitri Gribenko2013-08-24
* Commit a no-op change to StringRef to (hopefully) trigger build bots.Chandler Carruth2013-08-07
* Use a non-c'tor for converting a boolean into a StringRef.Bill Wendling2013-07-26
* Add a bool->StringRef c'tor to StringRef.Bill Wendling2013-07-25
* Revert r185852.Manman Ren2013-07-08
* StringRef: add DenseMapInfo for StringRef.Manman Ren2013-07-08
* Replaced usages of size_type with size_t to be more consistent.Aaron Ballman2013-05-02
* fix windows warning. Peng Cheng2013-05-01
* Test commit. Remove trailing whitespace.Matt Arsenault2013-02-26
* Remove redundant 'llvm::' qualificationsDmitri Gribenko2013-01-13
* Sort the #include lines for the include/... tree with the script.Chandler Carruth2012-12-03
* Fix Doxygen issues:Dmitri Gribenko2012-09-13
* Add some missing includes for the build against stdcxx.Joerg Sonnenberger2012-08-10
* Add doxygen comments.Michael J. Spencer2012-05-11
* [Support/StringRef] Add find_last_not_of and {r,l,}trim.Michael J. Spencer2012-05-11
* Make StringRef::getAsInteger work with all integer types. Before this changeMichael J. Spencer2012-03-10
* Add generic support for hashing StringRef objects using the new hashing library.Chandler Carruth2012-03-04
* add ::drop_back() and ::drop_front() methods, which are like pop_front/pop_ba...Chris Lattner2012-01-24
* ADT/StringRef: Add ::lower() and ::upper() methods.Daniel Dunbar2011-11-06
* 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