1. 367342e Remove bounded StringRef::compare() since nothing but Clang SA was using it and it is just as easy to use StringRef::substr() preceding StringRef::compare() to achieve the same thing. by Lenny Maiorani · 14 years ago
  2. fad9d95 Implements StringRef::compare with bounds. It is behaves similarly to strncmp(). Unit tests also included. by Lenny Maiorani · 15 years ago
  3. 2114b76 by Chris Lattner · 15 years ago
  4. 9bf0380 StringRef::compare_numeric also differed from StringRef::compare for characters > 127. by Benjamin Kramer · 15 years ago
  5. b04d4af Do unsigned char comparisons in StringRef::compare_lower to be more consistent with compare in corner cases. by Benjamin Kramer · 15 years ago
  6. d1d7ed6 Add StringRef::compare_numeric and use it to sort TableGen register records. by Jakob Stoklund Olesen · 15 years ago
  7. 738800d Silence compiler warning. by Benjamin Kramer · 16 years ago
  8. 5639af4 Document the edit-distance algorithm used in StringRef, switch it over by Douglas Gregor · 16 years ago
  9. 4ee2cf6 Move the two definitions of operator<< into namespace llvm, so they by Douglas Gregor · 16 years ago
  10. 00879d8 Change StringRef::startswith and StringRef::endswith to versions which are a by Eli Friedman · 16 years ago
  11. 99b5bd9 Reenable Split2 StringRef test with Apple gcc. by Benjamin Kramer · 16 years ago
  12. 1acdfbd "XFAIL" the Split2 StringReft test with Apple gcc, which miscompiles it. by Daniel Dunbar · 16 years ago
  13. ff2c72b Distinguish "a," from "a". The first one splits into "a" + "" and the second one into by Rafael Espindola · 16 years ago
  14. 7c68549 by Rafael Espindola · 16 years ago
  15. d554e44 Add a new split method to StringRef that puts the substrings in a vector. by Rafael Espindola · 16 years ago
  16. 9806e4a Add From arguments to StringRef search functions, and tweak doxyments. by Daniel Dunbar · 16 years ago
  17. 4498168 Add StringRef::{rfind, rsplit} by Daniel Dunbar · 16 years ago
  18. 3828a99 Fix pasto in StringRef::count(char) by Daniel Dunbar · 16 years ago
  19. 5736db6 Add StringRef::count({char,StringRef}) by Daniel Dunbar · 16 years ago
  20. a1e04d4 StringRef: Add find(char) and find(StringRef). by Daniel Dunbar · 16 years ago
  21. 56563f3 Add StringRef::{slice, split}, two convenient string operations which are simple by Daniel Dunbar · 16 years ago
  22. e23388b Support writing a StringRef to a raw_ostream directly. by Daniel Dunbar · 16 years ago
  23. 1f98210 Add StringRef::{substr, startswith}. by Daniel Dunbar · 16 years ago
  24. 25f9fc5 Add StringRef class, with fixes. by Daniel Dunbar · 16 years ago