1. b0940b4 [Support/StringRef] Add find_last_not_of and {r,l,}trim. by Michael J. Spencer · 13 years ago
  2. a9963c6 Don't die with an assertion if the Result bitwidth is already correct. This by Chris Lattner · 13 years ago
  3. 2dbd784 No need for "else if" after a return. Autosense "0o123" as octal in by Chris Lattner · 13 years ago
  4. 9130b42 Make StringRef::getAsInteger work with all integer types. Before this change by Michael J. Spencer · 13 years ago
  5. 528f0bb Add generic support for hashing StringRef objects using the new hashing library. by Chandler Carruth · 13 years ago
  6. 37b6e5a Workaround a miscompilation by gcc-4.3 that showed up as a failure by Duncan Sands · 13 years ago
  7. bf8653f Move the implementation of StringRef::split out of StringExtras.cpp by Duncan Sands · 13 years ago
  8. 01d53ec Add function for computing the edit distance of two arrays. by Kaelyn Uhrain · 14 years ago
  9. a7b966f Fix a typo. by Benjamin Kramer · 14 years ago
  10. 589fbb1 ADT/StringRef: Add ::lower() and ::upper() methods. by Daniel Dunbar · 14 years ago
  11. e7a0719 Fix handling of the From parameter in StringRef::find. by Benjamin Kramer · 14 years ago
  12. 6e6a558 Add a bad char heuristic to StringRef::find. by Benjamin Kramer · 14 years ago
  13. 7850dd0 Fix a bug in compare_numeric(). by Jakob Stoklund Olesen · 14 years ago
  14. 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
  15. 437ef0c Implements StringRef::compare with bounds. It is behaves similarly to strncmp(). Unit tests also included. by Lenny Maiorani · 14 years ago
  16. 7a2bdde Fix a ton of comment typos found by codespell. Patch by by Chris Lattner · 14 years ago
  17. 40f8f62 PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and by Jay Foad · 15 years ago
  18. 63c133b Support/ADT/StringRef: Add find_last_of. by Michael J. Spencer · 15 years ago
  19. 326990f Fix Whitespace. by Michael J. Spencer · 15 years ago
  20. 13302ec Fix memory leak in StringRef::edit_distance(). 'Allocated' could be leaked on an early return. by Ted Kremenek · 15 years ago
  21. 5ee568a Extend StringRef's edit-distance algorithm to permit an upper bound on the allowed edit distance by Douglas Gregor · 15 years ago
  22. 837bccd StringRef::compare_numeric also differed from StringRef::compare for characters > 127. by Benjamin Kramer · 15 years ago
  23. 0043e35 Do unsigned char comparisons in StringRef::compare_lower to be more consistent with compare in corner cases. by Benjamin Kramer · 15 years ago
  24. 250eb00 Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef). by Benjamin Kramer · 15 years ago
  25. 160a3bf Add StringRef::compare_numeric and use it to sort TableGen register records. by Jakob Stoklund Olesen · 15 years ago
  26. 1e7ad39 Add an override to StringRef::getAsInteger which parses into an APInt. by John McCall · 15 years ago
  27. 2772ea8 More trivial optimizations to a function well outside the critical path by Douglas Gregor · 16 years ago
  28. ad6b6da Switch StringRef::edit_distance over to using raw pointers, since both by Douglas Gregor · 16 years ago
  29. 7e54d5b Document the edit-distance algorithm used in StringRef, switch it over by Douglas Gregor · 16 years ago
  30. 441c8b4 Implement edit distance for StringRef by Douglas Gregor · 16 years ago
  31. 58ce7ac Use StringRef::min instead of std::min. by Daniel Dunbar · 16 years ago
  32. 05872ea Add compare_lower and equals_lower methods to StringRef. Switch all users of by Benjamin Kramer · 16 years ago
  33. 64066bd Add From arguments to StringRef search functions, and tweak doxyments. by Daniel Dunbar · 16 years ago
  34. 2928c83 Pass StringRef by value. by Daniel Dunbar · 16 years ago
  35. 77696be Workaround what I believe is an MSVC bug where it emits a definition for a by Daniel Dunbar · 16 years ago
  36. 6441e54 simplify as daniel suggests by Chris Lattner · 16 years ago
  37. 05a32c8 move a couple non-trivial methods out of line, add new by Chris Lattner · 16 years ago
  38. 63c6b7d add some more overloads of StringRef::getAsInteger for by Chris Lattner · 16 years ago
  39. cea1438 provide a "strtoull" operation that works on StringRef's. by Chris Lattner · 16 years ago
  40. e655128 Add StringRef::{rfind, rsplit} by Daniel Dunbar · 16 years ago