Fix issue with bitwise and precedence.
[oota-llvm.git] / lib / Support / StringRef.cpp
2012-02-15 Kaelyn UhrainAdd function for computing the edit distance of two...
2011-11-06 Benjamin KramerFix a typo.
2011-11-06 Daniel DunbarADT/StringRef: Add ::lower() and ::upper() methods.
2011-10-17 Benjamin KramerFix handling of the From parameter in StringRef::find.
2011-10-15 Benjamin KramerAdd a bad char heuristic to StringRef::find.
2011-09-30 Jakob Stoklund OlesenFix a bug in compare_numeric().
2011-04-28 Lenny MaioraniRemove bounded StringRef::compare() since nothing but...
2011-04-15 Lenny MaioraniImplements StringRef::compare with bounds. It is behave...
2011-04-15 Chris LattnerFix a ton of comment typos found by codespell. Patch by
2010-12-07 Jay FoadPR5207: Change APInt methods trunc(), sext(), zext...
2010-11-30 Michael J. SpencerSupport/ADT/StringRef: Add find_last_of.
2010-11-26 Michael J. SpencerFix Whitespace.
2010-11-07 Ted KremenekFix memory leak in StringRef::edit_distance(). 'Alloca...
2010-10-19 Douglas GregorExtend StringRef's edit-distance algorithm to permit...
2010-08-26 Benjamin KramerStringRef::compare_numeric also differed from StringRef...
2010-08-26 Benjamin KramerDo unsigned char comparisons in StringRef::compare_lowe...
2010-08-23 Benjamin KramerAvoid O(n*m) complexity in StringRef::find_first(_not...
2010-05-26 Jakob Stoklund OlesenAdd StringRef::compare_numeric and use it to sort Table...
2010-02-28 John McCallAdd an override to StringRef::getAsInteger which parses...
2010-01-07 Douglas GregorMore trivial optimizations to a function well outside...
2010-01-07 Douglas GregorSwitch StringRef::edit_distance over to using raw point...
2009-12-31 Douglas GregorDocument the edit-distance algorithm used in StringRef...
2009-12-30 Douglas GregorImplement edit distance for StringRef
2009-11-19 Daniel DunbarUse StringRef::min instead of std::min.
2009-11-12 Benjamin KramerAdd compare_lower and equals_lower methods to StringRef...
2009-11-11 Daniel DunbarAdd From arguments to StringRef search functions, and...
2009-11-06 Daniel DunbarPass StringRef by value.
2009-09-22 Daniel DunbarWorkaround what I believe is an MSVC bug where it emits...
2009-09-20 Chris Lattnersimplify as daniel suggests
2009-09-20 Chris Lattnermove a couple non-trivial methods out of line, add new
2009-09-19 Chris Lattneradd some more overloads of StringRef::getAsInteger for
2009-09-19 Chris Lattnerprovide a "strtoull" operation that works on StringRef's.
2009-09-16 Daniel DunbarAdd StringRef::{rfind, rsplit}