[ADT] Rewrite the StringRef::find implementation to be simpler, clearer,
[oota-llvm.git] / lib / Support / StringRef.cpp
2015-09-10 Chandler Carruth[ADT] Rewrite the StringRef::find implementation to...
2015-09-10 Chandler Carruth[ADT] Fix a confusing interface spec and some annoying...
2015-09-10 Chandler Carruth[ADT] Add a single-character version of the small vecto...
2014-08-27 Craig TopperSimplify creation of a bunch of ArrayRefs by using...
2014-08-21 Craig TopperRemove custom implementations of max/min in StringRef...
2014-04-07 Craig Topper[C++11] Make use of 'nullptr' in the Support library.
2014-03-06 Ahmed CharlesReplace OwningPtr<T> with std::unique_ptr<T>.
2013-10-30 Rui UeyamaAdd {start,end}with_lower methods to StringRef.
2013-08-24 Dmitri GribenkoAdded const qualifier to StringRef::edit_distance membe...
2013-07-08 Manman RenRevert r185852.
2013-07-08 Manman RenStringRef: add DenseMapInfo for StringRef.
2012-12-03 Chandler CarruthUse the new script to sort the includes of every file...
2012-10-02 Nick KledzikImprove overflow detection in StringRef::getAsUnsignedI...
2012-05-11 Michael J. Spencer[Support/StringRef] Add find_last_not_of and {r,l,...
2012-04-23 Chris LattnerDon't die with an assertion if the Result bitwidth...
2012-04-21 Chris LattnerNo need for "else if" after a return. Autosense "0o123...
2012-03-10 Michael J. SpencerMake StringRef::getAsInteger work with all integer...
2012-03-04 Chandler CarruthAdd generic support for hashing StringRef objects using...
2012-02-24 Duncan SandsWorkaround a miscompilation by gcc-4.3 that showed...
2012-02-21 Duncan SandsMove the implementation of StringRef::split out of...
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}