summaryrefslogtreecommitdiff
path: root/lib/Support/StringRef.cpp
Commit message (Expand)AuthorAge
* Fix a bug in compare_numeric().Jakob Stoklund Olesen2011-09-30
* 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
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-15
* PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad2010-12-07
* Support/ADT/StringRef: Add find_last_of.Michael J. Spencer2010-11-30
* Fix Whitespace.Michael J. Spencer2010-11-26
* Fix memory leak in StringRef::edit_distance(). 'Allocated' could be leaked o...Ted Kremenek2010-11-07
* Extend StringRef's edit-distance algorithm to permit an upper bound on the al...Douglas Gregor2010-10-19
* StringRef::compare_numeric also differed from StringRef::compare for characte...Benjamin Kramer2010-08-26
* Do unsigned char comparisons in StringRef::compare_lower to be more consisten...Benjamin Kramer2010-08-26
* Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef).Benjamin Kramer2010-08-23
* Add StringRef::compare_numeric and use it to sort TableGen register records.Jakob Stoklund Olesen2010-05-26
* Add an override to StringRef::getAsInteger which parses into an APInt.John McCall2010-02-28
* More trivial optimizations to a function well outside the critical pathDouglas Gregor2010-01-07
* Switch StringRef::edit_distance over to using raw pointers, since bothDouglas Gregor2010-01-07
* Document the edit-distance algorithm used in StringRef, switch it overDouglas Gregor2009-12-31
* Implement edit distance for StringRefDouglas Gregor2009-12-30
* Use StringRef::min instead of std::min.Daniel Dunbar2009-11-19
* Add compare_lower and equals_lower methods to StringRef. Switch all users ofBenjamin Kramer2009-11-12
* Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar2009-11-11
* Pass StringRef by value.Daniel Dunbar2009-11-06
* Workaround what I believe is an MSVC bug where it emits a definition for aDaniel Dunbar2009-09-22
* simplify as daniel suggestsChris Lattner2009-09-20
* move a couple non-trivial methods out of line, add new Chris 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