Home | History | Annotate | Download | only in include

Lines Matching defs:PartialMatch

131 // You can use the "PartialMatch" operation when you want the pattern
135 // pcrecpp::RE("ell").PartialMatch("hello");
140 // re.PartialMatch("x*100 + 20", &number);
223 // if (RE("HELLO", opt).PartialMatch("hello world")) ...
230 // RE(pattern, RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
234 // RE_Options().set_caseless(true).set_multiline(true)).PartialMatch(str);
253 // .set_multiline(true)).PartialMatch(sometext);
372 // RE(pattern, RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
375 // RE_Options().set_caseless(true).set_multiline(true)).PartialMatch(str);
567 bool PartialMatch(const StringPiece& text, ARGS && ...a) const {