Home | History | Annotate | Download | only in dist

Lines Matching full: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);
364 // RE(pattern, RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
367 // RE_Options().set_caseless(true).set_multiline(true)).PartialMatch(str);
553 bool PartialMatch(const StringPiece& text,