aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Support/Regex.cpp
Commit message (Expand)AuthorAgeFilesLines
* Update aosp/master LLVM for rebase to r235153Pirama Arumuga Nainar2015-05-181-1/+2
* Update aosp/master llvm for rebase to r233350Pirama Arumuga Nainar2015-04-091-2/+1
* Update LLVM for 3.5 rebase (r209712).Stephen Hines2014-05-291-1/+1
* Update to LLVM 3.5a.Stephen Hines2014-04-241-3/+19
* Fix off-by-one error in Regex::isValidAlexey Samsonov2013-08-081-1/+1
* Introduce Regex::isLiteralERE function.Peter Collingbourne2013-08-051-0/+7
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-031-2/+2
* Add backreference matching capabilities to Support/Regex, withEli Bendersky2012-11-281-1/+3
* regexes are allowed to match empty things, e.g. {{.*}} in filecheck.Chris Lattner2011-04-091-1/+1
* Don't pass StringRef by reference.Benjamin Kramer2010-07-141-2/+2
* Add Regex::sub, for doing regular expression substitution with backreferences.Daniel Dunbar2010-02-171-0/+76
* remove support for "NoSub" from regex. It seems like a minor optimizationChris Lattner2009-09-261-15/+12
* add and document regex support for FileCheck. You can now do stuff like:Chris Lattner2009-09-241-2/+3
* tidy up, fix a memory leak in Regex::isValidChris Lattner2009-09-241-13/+10
* Add regular expression matching support, based on OpenBSD regexec()/regcomp()Torok Edwin2009-08-301-0/+97