index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Support
/
StringRef.cpp
Age
Commit message (
Expand
)
Author
2010-12-07
PR5207: Change APInt methods trunc(), sext(), zext(), sextOrTrunc() and
Jay Foad
2010-11-30
Support/ADT/StringRef: Add find_last_of.
Michael J. Spencer
2010-11-26
Fix Whitespace.
Michael J. Spencer
2010-11-07
Fix memory leak in StringRef::edit_distance(). 'Allocated' could be leaked o...
Ted Kremenek
2010-10-19
Extend StringRef's edit-distance algorithm to permit an upper bound on the al...
Douglas Gregor
2010-08-26
StringRef::compare_numeric also differed from StringRef::compare for characte...
Benjamin Kramer
2010-08-26
Do unsigned char comparisons in StringRef::compare_lower to be more consisten...
Benjamin Kramer
2010-08-23
Avoid O(n*m) complexity in StringRef::find_first(_not)_of(StringRef).
Benjamin Kramer
2010-05-26
Add StringRef::compare_numeric and use it to sort TableGen register records.
Jakob Stoklund Olesen
2010-02-28
Add an override to StringRef::getAsInteger which parses into an APInt.
John McCall
2010-01-07
More trivial optimizations to a function well outside the critical path
Douglas Gregor
2010-01-07
Switch StringRef::edit_distance over to using raw pointers, since both
Douglas Gregor
2009-12-31
Document the edit-distance algorithm used in StringRef, switch it over
Douglas Gregor
2009-12-30
Implement edit distance for StringRef
Douglas Gregor
2009-11-19
Use StringRef::min instead of std::min.
Daniel Dunbar
2009-11-12
Add compare_lower and equals_lower methods to StringRef. Switch all users of
Benjamin Kramer
2009-11-11
Add From arguments to StringRef search functions, and tweak doxyments.
Daniel Dunbar
2009-11-06
Pass StringRef by value.
Daniel Dunbar
2009-09-22
Workaround what I believe is an MSVC bug where it emits a definition for a
Daniel Dunbar
2009-09-20
simplify as daniel suggests
Chris Lattner
2009-09-20
move a couple non-trivial methods out of line, add new
Chris Lattner
2009-09-19
add some more overloads of StringRef::getAsInteger for
Chris Lattner
2009-09-19
provide a "strtoull" operation that works on StringRef's.
Chris Lattner
2009-09-16
Add StringRef::{rfind, rsplit}
Daniel Dunbar