aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/StringRef.h
AgeCommit message (Expand)Author
2009-11-19Remove the now obsolete algorithm include from StringRef.h.Benjamin Kramer
2009-11-19Workaround PR5482, because all the gcc versions that I had were miscompiling ...Torok Edwin
2009-11-16Fix unused variables warnings.Eric Christopher
2009-11-13Use .data() instead of .c_str() when nul-termination is not needed.Dan Gohman
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-12StringRef(const char*) should not be used to turn null pointers into emptyDaniel Dunbar
2009-11-12Add compare_lower and equals_lower methods to StringRef. Switch all users ofBenjamin Kramer
2009-11-11Add StringRef::split(StringRef), to complement StringRef::split(char).Daniel Dunbar
2009-11-11Add From arguments to StringRef search functions, and tweak doxyments.Daniel Dunbar
2009-11-06Pass StringRef by value.Daniel Dunbar
2009-10-22size_t, not unsigned here to silence a warning.Eric Christopher
2009-10-01Don't use identifiers that start with an underscore followedDan Gohman
2009-09-29Create empty StringRef is incoming cstring is NULL.Devang Patel
2009-09-20write rfind in terms of npos as daniel requestedChris Lattner
2009-09-20move a couple non-trivial methods out of line, add new Chris Lattner
2009-09-20add size_t and a version of rfind that allows specification of whereChris Lattner
2009-09-19add some more overloads of StringRef::getAsInteger forChris Lattner
2009-09-19provide a "strtoull" operation that works on StringRef's.Chris Lattner
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-13Add StringRef::front (with some small tweaks while I was in the area).Daniel Dunbar
2009-08-11StringRef: Add find(char) and find(StringRef).Daniel Dunbar
2009-08-10add a simple back() method to StringRef.Chris Lattner
2009-08-05Add StringRef::endswithDaniel Dunbar
2009-07-26Use the RHS length instead of the LHS length. They are both the same,Chris Lattner
2009-07-26Add StringRef::{slice, split}, two convenient string operations which are simpleDaniel Dunbar
2009-07-22Define npos in a way that should make MSVC happier.Daniel Dunbar
2009-07-21Add missing includeDaniel Dunbar
2009-07-21Move StringRef comparison operators out of class.Daniel Dunbar
2009-07-21Add StringRef::{substr, startswith}.Daniel Dunbar
2009-07-21Add StringRef class, with fixes.Daniel Dunbar