aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/Regex.cpp
AgeCommit message (Expand)AuthorFilesLines
2012-11-28Add backreference matching capabilities to Support/Regex, withEli Bendersky1-1/+3
2011-04-09regexes are allowed to match empty things, e.g. {{.*}} in filecheck.Chris Lattner1-1/+1
2010-07-14Don't pass StringRef by reference.Benjamin Kramer1-2/+2
2010-02-17Add Regex::sub, for doing regular expression substitution with backreferences.Daniel Dunbar1-0/+76
2009-09-26remove support for "NoSub" from regex. It seems like a minor optimizationChris Lattner1-15/+12
2009-09-24add and document regex support for FileCheck. You can now do stuff like:Chris Lattner1-2/+3
2009-09-24tidy up, fix a memory leak in Regex::isValidChris Lattner1-13/+10
2009-08-30Add regular expression matching support, based on OpenBSD regexec()/regcomp()Torok Edwin1-0/+97