Change StringRef::startswith and StringRef::endswith to versions which are a
[oota-llvm.git] / include / llvm / ADT / StringRef.h
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.