aboutsummaryrefslogtreecommitdiff
path: root/unittests/ADT/StringRefTest.cpp
AgeCommit message (Expand)Author
2012-12-04Sort the #include lines for unittest/...Chandler Carruth
2012-10-03Use unsigned long long instead of uin64_t for OS where that matters.Nick Kledzik
2012-10-03Don't call getAsUnsignedInteger directly, it fails to compile if uint64_t is ...Benjamin Kramer
2012-10-03Add getAsUnsignedInteger test case that checks that known bad values are reje...Nick Kledzik
2012-05-11[Support/StringRef] Add find_last_not_of and {r,l,}trim.Michael J. Spencer
2012-03-11Fix warnings.Michael J. Spencer
2012-03-10Make StringRef::getAsInteger work with all integer types. Before this changeMichael J. Spencer
2012-03-04Add generic support for hashing StringRef objects using the new hashing library.Chandler Carruth
2011-10-15Add a bad char heuristic to StringRef::find.Benjamin Kramer
2011-09-30Fix a bug in compare_numeric().Jakob Stoklund Olesen
2011-04-28Remove bounded StringRef::compare() since nothing but Clang SA was using it a...Lenny Maiorani
2011-04-15Implements StringRef::compare with bounds. It is behaves similarly to strncmp...Lenny Maiorani
2011-01-27Don't infinitely recurse! Patch by Marius Wachtler!Chris Lattner
2010-08-26StringRef::compare_numeric also differed from StringRef::compare for characte...Benjamin Kramer
2010-08-26Do unsigned char comparisons in StringRef::compare_lower to be more consisten...Benjamin Kramer
2010-05-26Add StringRef::compare_numeric and use it to sort TableGen register records.Jakob Stoklund Olesen
2009-12-31Silence compiler warning.Benjamin Kramer
2009-12-31Document the edit-distance algorithm used in StringRef, switch it overDouglas Gregor
2009-12-24Move the two definitions of operator<< into namespace llvm, so theyDouglas Gregor
2009-12-21Change StringRef::startswith and StringRef::endswith to versions which are aEli Friedman
2009-11-19Reenable Split2 StringRef test with Apple gcc.Benjamin Kramer
2009-11-17"XFAIL" the Split2 StringReft test with Apple gcc, which miscompiles it.Daniel Dunbar
2009-11-13Distinguish "a," from "a". The first one splits into "a" + "" and the second ...Rafael Espindola
2009-11-13Switch to smallvector. Also fix issue with using unsigend for MaxSplit.Rafael Espindola
2009-11-13Add a new split method to StringRef that puts the substrings in a vector.Rafael Espindola
2009-11-11Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar
2009-09-16Add StringRef::{rfind, rsplit}Daniel Dunbar
2009-08-18Fix pasto in StringRef::count(char)Daniel Dunbar
2009-08-18Add StringRef::count({char,StringRef})Daniel Dunbar
2009-08-11StringRef: Add find(char) and find(StringRef).Daniel Dunbar
2009-07-26Add StringRef::{slice, split}, two convenient string operations which are simpleDaniel Dunbar
2009-07-22Support writing a StringRef to a raw_ostream directly.Daniel Dunbar
2009-07-21Add StringRef::{substr, startswith}.Daniel Dunbar
2009-07-21Add StringRef class, with fixes.Daniel Dunbar