Lines Matching full:regexp
11 #include "re2/regexp.h"
34 Regexp::ParseFlags pf = static_cast<Regexp::ParseFlags>(
38 re2::Regexp* re = Regexp::Parse(pattern, pf, &status);
49 re2::Regexp* m = re2::Regexp::HaveMatch(n, pf);
52 re2::Regexp** sub = new re2::Regexp*[nsub + 1];
57 re = re2::Regexp::Concat(sub, nsub + 1, pf);
60 re2::Regexp* sub[2];
63 re = re2::Regexp::Concat(sub, 2, pf);
76 Regexp::ParseFlags pf = static_cast<Regexp::ParseFlags>(
78 re2::Regexp* re = re2::Regexp::Alternate(const_cast<re2::Regexp**>(&re_[0]),
81 re2::Regexp* sre = re->Simplify();
109 LOG(DFATAL) << "RE2::Set::Match: match but unknown regexp set";