size_t, not unsigned here to silence a warning.
[oota-llvm.git] / include / llvm / ADT / StringRef.h
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.