[Support/StringRef] Add find_last_not_of and {r,l,}trim.
[oota-llvm.git] / include / llvm / ADT / StringRef.h
2012-05-11 Michael J. Spencer[Support/StringRef] Add find_last_not_of and {r,l,...
2012-03-10 Michael J. SpencerMake StringRef::getAsInteger work with all integer...
2012-03-04 Chandler CarruthAdd generic support for hashing StringRef objects using...
2012-01-24 Chris Lattneradd ::drop_back() and ::drop_front() methods, which...
2011-11-06 Daniel DunbarADT/StringRef: Add ::lower() and ::upper() methods.
2011-05-20 Argyrios KyrtzidisAdd asserts in StringRef to make sure we avoid undefine...
2011-05-13 John McCallAdd an operator+= for appending StringRefs onto std...
2011-04-28 Lenny MaioraniRemove bounded StringRef::compare() since nothing but...
2011-04-15 Lenny MaioraniImplements StringRef::compare with bounds. It is behave...
2010-11-30 Michael J. SpencerSupport/ADT/StringRef: Add find_last_of.
2010-11-26 Benjamin KramerStringRefs are POD-like.
2010-11-26 Michael J. SpencerFix Whitespace.
2010-10-19 Douglas GregorExtend StringRef's edit-distance algorithm to permit...
2010-08-23 Benjamin KramerAvoid O(n*m) complexity in StringRef::find_first(_not...
2010-08-23 Benjamin KramerStringRef tweaks:
2010-08-18 Chris LattnerDon't pass in a null pointer to std::string's ctor...
2010-05-26 Jakob Stoklund OlesenAdd StringRef::compare_numeric and use it to sort Table...
2010-04-19 Dan GohmanThese functions don't need to access this.
2010-02-28 John McCallAdd an override to StringRef::getAsInteger which parses...
2010-02-22 Dan GohmanFix various doxygen warnings.
2010-01-13 Chris Lattnergive StringRef a const_iterator member.
2010-01-07 Kovarththanan Raja... Fix occurrence typo
2009-12-30 Douglas GregorImplement edit distance for StringRef
2009-12-21 Eli FriedmanChange StringRef::startswith and StringRef::endswith...
2009-11-19 Benjamin KramerRemove the now obsolete algorithm include from StringRef.h.
2009-11-19 Torok EdwinWorkaround PR5482, because all the gcc versions that...
2009-11-16 Eric ChristopherFix unused variables warnings.
2009-11-13 Dan GohmanUse .data() instead of .c_str() when nul-termination...
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-12 Daniel DunbarStringRef(const char*) should not be used to turn null...
2009-11-12 Benjamin KramerAdd compare_lower and equals_lower methods to StringRef...
2009-11-11 Daniel DunbarAdd StringRef::split(StringRef), to complement StringRe...
2009-11-11 Daniel DunbarAdd From arguments to StringRef search functions, and...
2009-11-06 Daniel DunbarPass StringRef by value.
2009-10-22 Eric Christophersize_t, not unsigned here to silence a warning.
2009-10-01 Dan GohmanDon't use identifiers that start with an underscore...
2009-09-29 Devang PatelCreate empty StringRef is incoming cstring is NULL.
2009-09-20 Chris Lattnerwrite rfind in terms of npos as daniel requested
2009-09-20 Chris Lattnermove a couple non-trivial methods out of line, add new
2009-09-20 Chris Lattneradd size_t and a version of rfind that allows specifica...
2009-09-19 Chris Lattneradd some more overloads of StringRef::getAsInteger for
2009-09-19 Chris Lattnerprovide a "strtoull" operation that works on StringRef's.
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-13 Daniel DunbarAdd StringRef::front (with some small tweaks while...
2009-08-11 Daniel DunbarStringRef: Add find(char) and find(StringRef).
2009-08-10 Chris Lattneradd a simple back() method to StringRef.
2009-08-05 Daniel DunbarAdd StringRef::endswith
2009-07-26 Chris LattnerUse the RHS length instead of the LHS length. They...
2009-07-26 Daniel DunbarAdd StringRef::{slice, split}, two convenient string...
2009-07-22 Daniel DunbarDefine npos in a way that should make MSVC happier.
2009-07-21 Daniel DunbarAdd missing include
2009-07-21 Daniel DunbarMove StringRef comparison operators out of class.
2009-07-21 Daniel DunbarAdd StringRef::{substr, startswith}.
2009-07-21 Daniel DunbarAdd StringRef class, with fixes.