aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/StringRef.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r222494.Stephen Hines2014-12-021-11/+11
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-2/+2
* Update to LLVM 3.5a.Stephen Hines2014-04-241-1/+0
* Add {start,end}with_lower methods to StringRef.Rui Ueyama2013-10-301-5/+24
* Added const qualifier to StringRef::edit_distance member functionDmitri Gribenko2013-08-241-1/+1
* Revert r185852.Manman Ren2013-07-081-5/+0
* StringRef: add DenseMapInfo for StringRef.Manman Ren2013-07-081-0/+5
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-2/+1
* Improve overflow detection in StringRef::getAsUnsignedInteger().Nick Kledzik2012-10-021-2/+2
* [Support/StringRef] Add find_last_not_of and {r,l,}trim.Michael J. Spencer2012-05-111-0/+26
* Don't die with an assertion if the Result bitwidth is already correct. ThisChris Lattner2012-04-231-1/+1
* No need for "else if" after a return. Autosense "0o123" as octal inChris Lattner2012-04-211-4/+12
* Make StringRef::getAsInteger work with all integer types. Before this changeMichael J. Spencer2012-03-101-29/+7
* Add generic support for hashing StringRef objects using the new hashing library.Chandler Carruth2012-03-041-0/+7
* Workaround a miscompilation by gcc-4.3 that showed up as a failureDuncan Sands2012-02-241-1/+1
* Move the implementation of StringRef::split out of StringExtras.cppDuncan Sands2012-02-211-0/+21
* Add function for computing the edit distance of two arrays.Kaelyn Uhrain2012-02-151-51/+5
* Fix a typo.Benjamin Kramer2011-11-061-1/+1
* ADT/StringRef: Add ::lower() and ::upper() methods.Daniel Dunbar2011-11-061-0/+26
* Fix handling of the From parameter in StringRef::find.Benjamin Kramer2011-10-171-2/+5
* Add a bad char heuristic to StringRef::find.Benjamin Kramer2011-10-151-3/+26
* Fix a bug in compare_numeric().Jakob Stoklund Olesen2011-09-301-6/+13
* Remove bounded StringRef::compare() since nothing but Clang SA was using it a...Lenny Maiorani2011-04-281-21/+0
* Implements StringRef::compare with bounds. It is behaves similarly to strncmp...Lenny Maiorani2011-04-151-0/+21
* Fix a ton of comment typos found by codespell. Patch byChris Lattner2011-04-151-2/+2
* PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() andJay Foad2010-12-071-1/+1
* Support/ADT/StringRef: Add find_last_of.Michael J. Spencer2010-11-301-0/+15
* Fix Whitespace.Michael J. Spencer2010-11-261-20/+20
* Fix memory leak in StringRef::edit_distance(). 'Allocated' could be leaked o...Ted Kremenek2010-11-071-5/+6
* Extend StringRef's edit-distance algorithm to permit an upper bound on the al...Douglas Gregor2010-10-191-1/+8
* StringRef::compare_numeric also differed from StringRef::compare for characte...Benjamin Kramer2010-08-261-1/+1
* Do unsigned char comparisons in StringRef::compare_lower to be more consisten...Benjamin Kramer2010-08-261-4/+4
* Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef).Benjamin Kramer2010-08-231-4/+13
* Add StringRef::compare_numeric and use it to sort TableGen register records.Jakob Stoklund Olesen2010-05-261-0/+28
* Add an override to StringRef::getAsInteger which parses into an APInt.John McCall2010-02-281-12/+93
* More trivial optimizations to a function well outside the critical pathDouglas Gregor2010-01-071-15/+8
* Switch StringRef::edit_distance over to using raw pointers, since bothDouglas Gregor2010-01-071-7/+25
* Document the edit-distance algorithm used in StringRef, switch it overDouglas Gregor2009-12-311-5/+14
* Implement edit distance for StringRefDouglas Gregor2009-12-301-0/+31
* Use StringRef::min instead of std::min.Daniel Dunbar2009-11-191-5/+5
* Add compare_lower and equals_lower methods to StringRef. Switch all users ofBenjamin Kramer2009-11-121-0/+20
* Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar2009-11-111-9/+24
* Pass StringRef by value.Daniel Dunbar2009-11-061-3/+3
* Workaround what I believe is an MSVC bug where it emits a definition for aDaniel Dunbar2009-09-221-0/+3
* simplify as daniel suggestsChris Lattner2009-09-201-16/+9
* move a couple non-trivial methods out of line, add new Chris Lattner2009-09-201-0/+71
* add some more overloads of StringRef::getAsInteger forChris Lattner2009-09-191-0/+45
* provide a "strtoull" operation that works on StringRef's.Chris Lattner2009-09-191-0/+63
* Add StringRef::{rfind, rsplit}Daniel Dunbar2009-09-161-0/+13