aboutsummaryrefslogtreecommitdiff
path: root/include/llvm/ADT/StringRef.h
AgeCommit message (Expand)Author
2013-05-02Replaced usages of size_type with size_t to be more consistent.Aaron Ballman
2013-05-01fix windows warning. Peng Cheng
2013-02-26Test commit. Remove trailing whitespace.Matt Arsenault
2013-01-13Remove redundant 'llvm::' qualificationsDmitri Gribenko
2012-12-03Sort the #include lines for the include/... tree with the script.Chandler Carruth
2012-09-13Fix Doxygen issues:Dmitri Gribenko
2012-08-10Add some missing includes for the build against stdcxx.Joerg Sonnenberger
2012-05-11Add doxygen comments.Michael J. Spencer
2012-05-11[Support/StringRef] Add find_last_not_of and {r,l,}trim.Michael J. Spencer
2012-03-10Make StringRef::getAsInteger work with all integer types. Before this changeMichael J. Spencer
2012-03-04Add generic support for hashing StringRef objects using the new hashing library.Chandler Carruth
2012-01-24add ::drop_back() and ::drop_front() methods, which are like pop_front/pop_ba...Chris Lattner
2011-11-06ADT/StringRef: Add ::lower() and ::upper() methods.Daniel Dunbar
2011-05-20Add asserts in StringRef to make sure we avoid undefined behavior:Argyrios Kyrtzidis
2011-05-13Add an operator+= for appending StringRefs onto std::strings.John McCall
2011-04-28Remove bounded StringRef::compare() since nothing but Clang SA was using it a...Lenny Maiorani
2011-04-15Implements StringRef::compare with bounds. It is behaves similarly to strncmp...Lenny Maiorani
2010-11-30Support/ADT/StringRef: Add find_last_of.Michael J. Spencer
2010-11-26StringRefs are POD-like.Benjamin Kramer
2010-11-26Fix Whitespace.Michael J. Spencer
2010-10-19Extend StringRef's edit-distance algorithm to permit an upper bound on the al...Douglas Gregor
2010-08-23Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef).Benjamin Kramer
2010-08-23StringRef tweaks:Benjamin Kramer
2010-08-18Don't pass in a null pointer to std::string's ctor, an empty stringChris Lattner
2010-05-26Add StringRef::compare_numeric and use it to sort TableGen register records.Jakob Stoklund Olesen
2010-04-19These functions don't need to access this.Dan Gohman
2010-02-28Add an override to StringRef::getAsInteger which parses into an APInt.John McCall
2010-02-22Fix various doxygen warnings.Dan Gohman
2010-01-13give StringRef a const_iterator member.Chris Lattner
2010-01-07Fix occurrence typoKovarththanan Rajaratnam
2009-12-30Implement edit distance for StringRefDouglas Gregor
2009-12-21Change StringRef::startswith and StringRef::endswith to versions which are aEli Friedman
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