1. f78650a Remove trailing space by Fangrui Song · 7 years ago
  2. 768d6dd Fix APFloat from string conversion for Inf by Serguei Katkov · 8 years ago
  3. 26d6fc1 [Support] Merge toLower / toUpper implementations by Francis Visoiu Mistrih · 8 years ago
  4. 8bd42a1 [Support] Add StringRef::getAsDouble. by Zachary Turner · 9 years ago
  5. ecbe619 Tweak the core loop in StringRef::find to avoid calling memcmp on every by Chandler Carruth · 9 years ago
  6. 17412b0 [Support] Add StringRef::find_lower and contains_lower. by Zachary Turner · 9 years ago
  7. d5d5763 Speculative fix for build failures due to consumeInteger. by Zachary Turner · 9 years ago
  8. 65fd2fc [Support] Add StringRef::consumeInteger. by Zachary Turner · 9 years ago
  9. 0143146 [MCParser] Accept uppercase radix variants 0X and 0B by Colin LeMahieu · 10 years ago
  10. 233edd2 [ADT] Rewrite the StringRef::find implementation to be simpler, clearer, by Chandler Carruth · 10 years ago
  11. 4425c91 [ADT] Fix a confusing interface spec and some annoying peculiarities by Chandler Carruth · 10 years ago
  12. 4771217 [ADT] Add a single-character version of the small vector split routine by Chandler Carruth · 10 years ago
  13. e1d1294 Simplify creation of a bunch of ArrayRefs by using None, makeArrayRef or just letting them be implicitly created. by Craig Topper · 11 years ago
  14. 3ced27c Remove custom implementations of max/min in StringRef that was originally added to work an old gcc bug. I believe its been fixed by now. by Craig Topper · 11 years ago
  15. c10719f [C++11] Make use of 'nullptr' in the Support library. by Craig Topper · 11 years ago
  16. 56440fd Replace OwningPtr<T> with std::unique_ptr<T>. by Ahmed Charles · 12 years ago
  17. 00e24e4 Add {start,end}with_lower methods to StringRef. by Rui Ueyama · 12 years ago
  18. 292c920 Added const qualifier to StringRef::edit_distance member function by Dmitri Gribenko · 12 years ago
  19. 9c5e998 Revert r185852. by Manman Ren · 12 years ago
  20. c6fe5bc StringRef: add DenseMapInfo for StringRef. by Manman Ren · 12 years ago
  21. ed0881b Use the new script to sort the includes of every file under lib. by Chandler Carruth · 13 years ago
  22. 35c79da Improve overflow detection in StringRef::getAsUnsignedInteger(). by Nick Kledzik · 13 years ago
  23. 9330381 [Support/StringRef] Add find_last_not_of and {r,l,}trim. by Michael J. Spencer · 13 years ago
  24. 5e14666 Don't die with an assertion if the Result bitwidth is already correct. This by Chris Lattner · 13 years ago
  25. 0a1bafe No need for "else if" after a return. Autosense "0o123" as octal in by Chris Lattner · 13 years ago
  26. cfa95f6 Make StringRef::getAsInteger work with all integer types. Before this change by Michael J. Spencer · 14 years ago
  27. ca99ad3 Add generic support for hashing StringRef objects using the new hashing library. by Chandler Carruth · 14 years ago
  28. 69d7a91 Workaround a miscompilation by gcc-4.3 that showed up as a failure by Duncan Sands · 14 years ago
  29. 8570b29 Move the implementation of StringRef::split out of StringExtras.cpp by Duncan Sands · 14 years ago
  30. 7a9ccf4 Add function for computing the edit distance of two arrays. by Kaelyn Uhrain · 14 years ago
  31. e3b94d1 Fix a typo. by Benjamin Kramer · 14 years ago
  32. 3fa528d ADT/StringRef: Add ::lower() and ::upper() methods. by Daniel Dunbar · 14 years ago
  33. e664de3 Fix handling of the From parameter in StringRef::find. by Benjamin Kramer · 14 years ago
  34. 4d681d7 Add a bad char heuristic to StringRef::find. by Benjamin Kramer · 14 years ago
  35. c874e2d Fix a bug in compare_numeric(). by Jakob Stoklund Olesen · 14 years ago
  36. 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
  37. fad9d95 Implements StringRef::compare with bounds. It is behaves similarly to strncmp(). Unit tests also included. by Lenny Maiorani · 14 years ago
  38. 0ab5e2c Fix a ton of comment typos found by codespell. Patch by by Chris Lattner · 14 years ago
  39. 583abbc PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and by Jay Foad · 15 years ago
  40. e1d3603d Support/ADT/StringRef: Add find_last_of. by Michael J. Spencer · 15 years ago
  41. f13f442 Fix Whitespace. by Michael J. Spencer · 15 years ago
  42. 3e100cf Fix memory leak in StringRef::edit_distance(). 'Allocated' could be leaked on an early return. by Ted Kremenek · 15 years ago
  43. 21afc3b Extend StringRef's edit-distance algorithm to permit an upper bound on the allowed edit distance by Douglas Gregor · 15 years ago
  44. 9bf0380 StringRef::compare_numeric also differed from StringRef::compare for characters > 127. by Benjamin Kramer · 15 years ago
  45. b04d4af Do unsigned char comparisons in StringRef::compare_lower to be more consistent with compare in corner cases. by Benjamin Kramer · 15 years ago
  46. 08fd2cf Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef). by Benjamin Kramer · 15 years ago
  47. d1d7ed6 Add StringRef::compare_numeric and use it to sort TableGen register records. by Jakob Stoklund Olesen · 15 years ago
  48. 512b650 Add an override to StringRef::getAsInteger which parses into an APInt. by John McCall · 16 years ago
  49. 47ed966 More trivial optimizations to a function well outside the critical path by Douglas Gregor · 16 years ago
  50. 09470e6 Switch StringRef::edit_distance over to using raw pointers, since both by Douglas Gregor · 16 years ago
  51. 5639af4 Document the edit-distance algorithm used in StringRef, switch it over by Douglas Gregor · 16 years ago
  52. 165882c Implement edit distance for StringRef by Douglas Gregor · 16 years ago
  53. 956c158 Use StringRef::min instead of std::min. by Daniel Dunbar · 16 years ago
  54. 68e4945 Add compare_lower and equals_lower methods to StringRef. Switch all users of by Benjamin Kramer · 16 years ago
  55. 9806e4a Add From arguments to StringRef search functions, and tweak doxyments. by Daniel Dunbar · 16 years ago
  56. ad36e8a Pass StringRef by value. by Daniel Dunbar · 16 years ago
  57. c827d9e Workaround what I believe is an MSVC bug where it emits a definition for a by Daniel Dunbar · 16 years ago
  58. 5a3a854 simplify as daniel suggests by Chris Lattner · 16 years ago
  59. 372a8ae move a couple non-trivial methods out of line, add new by Chris Lattner · 16 years ago
  60. 84c1527 add some more overloads of StringRef::getAsInteger for by Chris Lattner · 16 years ago
  61. 68ee700 provide a "strtoull" operation that works on StringRef's. by Chris Lattner · 16 years ago
  62. 4498168 Add StringRef::{rfind, rsplit} by Daniel Dunbar · 16 years ago