Fix layering StringRef copy using BumpPtrAllocator.
[oota-llvm.git] / include / llvm / ADT / StringRef.h
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 TokerMove true/false StringRef helper to StringExtras
2014-01-27 Alp TokerStringRef: Extend constexpr capabilities and introduce...
2013-10-30 Rui UeyamaAdd {start,end}with_lower methods to StringRef.
2013-08-24 Dmitri GribenkoAdded const qualifier to StringRef::edit_distance membe...
2013-08-07 Chandler CarruthCommit a no-op change to StringRef to (hopefully) trigg...
2013-07-26 Bill WendlingUse a non-c'tor for converting a boolean into a StringRef.
2013-07-25 Bill WendlingAdd a bool->StringRef c'tor to StringRef.
2013-07-08 Manman RenRevert r185852.
2013-07-08 Manman RenStringRef: add DenseMapInfo for StringRef.
2013-05-02 Aaron BallmanReplaced usages of size_type with size_t to be more...
2013-05-01 Peng Chengfix windows warning.
2013-02-26 Matt ArsenaultTest commit. Remove trailing whitespace.
2013-01-13 Dmitri GribenkoRemove redundant 'llvm::' qualifications
2012-12-03 Chandler CarruthSort the #include lines for the include/... tree with...
2012-09-13 Dmitri GribenkoFix Doxygen issues:
2012-08-10 Joerg SonnenbergerAdd some missing includes for the build against stdcxx.
2012-05-11 Michael J. SpencerAdd doxygen comments.
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.