[ADT] Add a single-character version of the small vector split routine
[oota-llvm.git] / unittests / ADT / StringRefTest.cpp
2015-09-10 Chandler Carruth[ADT] Add a single-character version of the small vecto...
2014-04-12 Benjamin KramerRetire llvm::array_endof in favor of non-member std...
2014-02-05 Nick KledzikFix layering StringRef copy using BumpPtrAllocator.
2014-01-27 Alp TokerRoll back the ConstStringRef change for now
2014-01-27 Alp TokerStringRef: Extend constexpr capabilities and introduce...
2014-01-07 Chandler CarruthRe-sort all of the includes with ./utils/sort_includes...
2013-10-30 Rui UeyamaAdd {start,end}with_lower methods to StringRef.
2013-10-28 Rui UeyamaAdd a few tests for StringRef::{start,end}with.
2013-09-03 Joerg SonnenbergerAdd a Python-like join function to merge a list of...
2012-12-04 Chandler CarruthSort the #include lines for unittest/...
2012-10-03 Nick KledzikUse unsigned long long instead of uin64_t for OS where...
2012-10-03 Benjamin KramerDon't call getAsUnsignedInteger directly, it fails...
2012-10-03 Nick KledzikAdd getAsUnsignedInteger test case that checks that...
2012-05-11 Michael J. Spencer[Support/StringRef] Add find_last_not_of and {r,l,...
2012-03-11 Michael J. SpencerFix warnings.
2012-03-10 Michael J. SpencerMake StringRef::getAsInteger work with all integer...
2012-03-04 Chandler CarruthAdd generic support for hashing StringRef objects using...
2011-10-15 Benjamin KramerAdd a bad char heuristic to StringRef::find.
2011-09-30 Jakob Stoklund OlesenFix a bug in compare_numeric().
2011-04-28 Lenny MaioraniRemove bounded StringRef::compare() since nothing but...
2011-04-15 Lenny MaioraniImplements StringRef::compare with bounds. It is behave...
2011-01-27 Chris LattnerDon't infinitely recurse! Patch by Marius Wachtler!
2010-08-26 Benjamin KramerStringRef::compare_numeric also differed from StringRef...
2010-08-26 Benjamin KramerDo unsigned char comparisons in StringRef::compare_lowe...
2010-05-26 Jakob Stoklund OlesenAdd StringRef::compare_numeric and use it to sort Table...
2009-12-31 Benjamin KramerSilence compiler warning.
2009-12-31 Douglas GregorDocument the edit-distance algorithm used in StringRef...
2009-12-24 Douglas GregorMove the two definitions of operator<< into namespace...
2009-12-21 Eli FriedmanChange StringRef::startswith and StringRef::endswith...
2009-11-19 Benjamin KramerReenable Split2 StringRef test with Apple gcc.
2009-11-17 Daniel Dunbar"XFAIL" the Split2 StringReft test with Apple gcc,...
2009-11-13 Rafael EspindolaDistinguish "a," from "a". The first one splits into...
2009-11-13 Rafael EspindolaSwitch to smallvector. Also fix issue with using unsige...
2009-11-13 Rafael EspindolaAdd a new split method to StringRef that puts the subst...
2009-11-11 Daniel DunbarAdd From arguments to StringRef search functions, and...
2009-09-16 Daniel DunbarAdd StringRef::{rfind, rsplit}
2009-08-18 Daniel DunbarFix pasto in StringRef::count(char)
2009-08-18 Daniel DunbarAdd StringRef::count({char,StringRef})
2009-08-11 Daniel DunbarStringRef: Add find(char) and find(StringRef).
2009-07-26 Daniel DunbarAdd StringRef::{slice, split}, two convenient string...
2009-07-22 Daniel DunbarSupport writing a StringRef to a raw_ostream directly.
2009-07-21 Daniel DunbarAdd StringRef::{substr, startswith}.
2009-07-21 Daniel DunbarAdd StringRef class, with fixes.