1. bff5530 [ADT] Add `StringRef::rsplit(StringRef Separator)`. by Henry Wong · 7 years ago
  2. b13ea4e Fix incorrect usage of std::is_assignable. by Richard Smith · 8 years ago
  3. 643edab Fix APFloat from string conversion for Inf by Serguei Katkov · 8 years ago
  4. 7438bc9 Added braces to work around gcc warning in googletest: suggest explicit braces to avoid ambiguous 'else'. NFC. by Galina Kistanova · 8 years ago
  5. 1ad79db Add more test cases for StringRef::edit_distance by Alex Denisov · 8 years ago
  6. 700f6ad [ADT] Add a version of llvm::join() that takes a range. by Zachary Turner · 8 years ago
  7. ba16481 [Support] Add StringRef::getAsDouble. by Zachary Turner · 9 years ago
  8. 2dcb697 [ADT] Add llvm::StringLiteral. by Zachary Turner · 9 years ago
  9. fd34282 [Support] Add StringRef::find_lower and contains_lower. by Zachary Turner · 9 years ago
  10. fd34be2 Add tests for r286139. by Jordan Rose · 9 years ago
  11. 3ae26e9 Fix signed / unsigned comparison. by Zachary Turner · 9 years ago
  12. 568a8f4 Add some predicated searching functions to StringRef. by Zachary Turner · 9 years ago
  13. 0966627 Fix build breakage due to typo in cast. by Zachary Turner · 9 years ago
  14. 20bb032 Speculative fix for build failures due to consumeInteger. by Zachary Turner · 9 years ago
  15. fb27f55 [Support] Add StringRef::consumeInteger. by Zachary Turner · 9 years ago
  16. bb0403b Add StringRef::take_front and StringRef::take_back by Zachary Turner · 9 years ago
  17. d9a7752 [ADT] Add 'consume_front' and 'consume_back' methods to StringRef which by Chandler Carruth · 9 years ago
  18. 552f3d8 StringRef::copy shouldn't allocate anything for length 0 strings. by Pete Cooper · 9 years ago
  19. 9ae3e2c [ADT] Add StringRef::{l,r}trim(char) overloads (NFC) by Vedant Kumar · 10 years ago
  20. f41971f [ADT] Fix a confusing interface spec and some annoying peculiarities by Chandler Carruth · 10 years ago
  21. 82c8356 [ADT] Add a single-character version of the small vector split routine by Chandler Carruth · 10 years ago
  22. 15c435a Retire llvm::array_endof in favor of non-member std::end. by Benjamin Kramer · 11 years ago
  23. 8147752 Fix layering StringRef copy using BumpPtrAllocator. by Nick Kledzik · 12 years ago
  24. 650e286 Roll back the ConstStringRef change for now by Alp Toker · 12 years ago
  25. bad9195 StringRef: Extend constexpr capabilities and introduce ConstStringRef by Alp Toker · 12 years ago
  26. 974a445 Re-sort all of the includes with ./utils/sort_includes.py so that by Chandler Carruth · 12 years ago
  27. f34c3ca Add {start,end}with_lower methods to StringRef. by Rui Ueyama · 12 years ago
  28. bc850d0 Add a few tests for StringRef::{start,end}with. by Rui Ueyama · 12 years ago
  29. f57a80f Add a Python-like join function to merge a list of strings with a by Joerg Sonnenberger · 12 years ago
  30. 5a88dda Sort the #include lines for unittest/... by Chandler Carruth · 13 years ago
  31. 436eaa8 Use unsigned long long instead of uin64_t for OS where that matters. by Nick Kledzik · 13 years ago
  32. e25de4a Don't call getAsUnsignedInteger directly, it fails to compile if uint64_t is not "unsigned long long". by Benjamin Kramer · 13 years ago
  33. 7a0f86f Add getAsUnsignedInteger test case that checks that known bad values are rejected by Nick Kledzik · 13 years ago
  34. b0940b4 [Support/StringRef] Add find_last_not_of and {r,l,}trim. by Michael J. Spencer · 13 years ago
  35. dbb4b2f Fix warnings. by Michael J. Spencer · 13 years ago
  36. 9130b42 Make StringRef::getAsInteger work with all integer types. Before this change by Michael J. Spencer · 13 years ago
  37. 528f0bb Add generic support for hashing StringRef objects using the new hashing library. by Chandler Carruth · 13 years ago
  38. 6e6a558 Add a bad char heuristic to StringRef::find. by Benjamin Kramer · 14 years ago
  39. 7850dd0 Fix a bug in compare_numeric(). by Jakob Stoklund Olesen · 14 years ago
  40. 6cf081c 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
  41. 437ef0c Implements StringRef::compare with bounds. It is behaves similarly to strncmp(). Unit tests also included. by Lenny Maiorani · 14 years ago
  42. b3371cd by Chris Lattner · 15 years ago
  43. 837bccd StringRef::compare_numeric also differed from StringRef::compare for characters > 127. by Benjamin Kramer · 15 years ago
  44. 0043e35 Do unsigned char comparisons in StringRef::compare_lower to be more consistent with compare in corner cases. by Benjamin Kramer · 15 years ago
  45. 160a3bf Add StringRef::compare_numeric and use it to sort TableGen register records. by Jakob Stoklund Olesen · 15 years ago
  46. 4760467 Silence compiler warning. by Benjamin Kramer · 16 years ago
  47. 7e54d5b Document the edit-distance algorithm used in StringRef, switch it over by Douglas Gregor · 16 years ago
  48. c883ad2 Move the two definitions of operator<< into namespace llvm, so they by Douglas Gregor · 16 years ago
  49. d5b1f8a Change StringRef::startswith and StringRef::endswith to versions which are a by Eli Friedman · 16 years ago
  50. 4912325 Reenable Split2 StringRef test with Apple gcc. by Benjamin Kramer · 16 years ago
  51. 0d753ec "XFAIL" the Split2 StringReft test with Apple gcc, which miscompiles it. by Daniel Dunbar · 16 years ago
  52. 20fd4ec Distinguish "a," from "a". The first one splits into "a" + "" and the second one into by Rafael Espindola · 16 years ago
  53. c78c0c9 by Rafael Espindola · 16 years ago
  54. 5ccac24 Add a new split method to StringRef that puts the substrings in a vector. by Rafael Espindola · 16 years ago
  55. 64066bd Add From arguments to StringRef search functions, and tweak doxyments. by Daniel Dunbar · 16 years ago
  56. e655128 Add StringRef::{rfind, rsplit} by Daniel Dunbar · 16 years ago
  57. 323a3e6 Fix pasto in StringRef::count(char) by Daniel Dunbar · 16 years ago
  58. 5caba3b Add StringRef::count({char,StringRef}) by Daniel Dunbar · 16 years ago
  59. 0ad7f9b StringRef: Add find(char) and find(StringRef). by Daniel Dunbar · 16 years ago
  60. d61918f Add StringRef::{slice, split}, two convenient string operations which are simple by Daniel Dunbar · 16 years ago
  61. dbe77cf Support writing a StringRef to a raw_ostream directly. by Daniel Dunbar · 16 years ago
  62. f5fdf73 Add StringRef::{substr, startswith}. by Daniel Dunbar · 16 years ago
  63. 4cf95d7 Add StringRef class, with fixes. by Daniel Dunbar · 16 years ago