PartialMatch      392 pcre/pcrecpp_unittest.cc   CHECK(r.PartialMatch("foo", &word1, &word2, &word3));
PartialMatch      396 pcre/pcrecpp_unittest.cc   CHECK(r.PartialMatch("bar", &word1, &word2, &word3));
PartialMatch      400 pcre/pcrecpp_unittest.cc   CHECK(r.PartialMatch("baz", &word1, &word2, &word3));
PartialMatch      404 pcre/pcrecpp_unittest.cc   CHECK(!r.PartialMatch("f", &word1, &word2, &word3));
PartialMatch      425 pcre/pcrecpp_unittest.cc   CHECK(re.PartialMatch(text_good) == true);
PartialMatch      426 pcre/pcrecpp_unittest.cc   CHECK(re.PartialMatch(text_bad) == false);
PartialMatch      432 pcre/pcrecpp_unittest.cc   CHECK(re2.PartialMatch(text_good) == false);   // because of match_limit
PartialMatch      433 pcre/pcrecpp_unittest.cc   CHECK(re2.PartialMatch(text_bad) == false);
PartialMatch      440 pcre/pcrecpp_unittest.cc   CHECK(re3.PartialMatch(text_good) == true);
PartialMatch      441 pcre/pcrecpp_unittest.cc   CHECK(re3.PartialMatch(text_bad) == false);
PartialMatch      447 pcre/pcrecpp_unittest.cc   CHECK(re4.PartialMatch(text_good) == false);
PartialMatch      448 pcre/pcrecpp_unittest.cc   CHECK(re4.PartialMatch(text_bad) == false);
PartialMatch      550 pcre/pcrecpp_unittest.cc     RE(regex,options).PartialMatch(str, &captured);
PartialMatch      572 pcre/pcrecpp_unittest.cc       CHECK(RE(regex,options).PartialMatch(str));
PartialMatch      577 pcre/pcrecpp_unittest.cc       CHECK(!RE(regex,options).PartialMatch(str));
PartialMatch      839 pcre/pcrecpp_unittest.cc   CHECK(RE("(\\d)").PartialMatch("1234", &i));
PartialMatch      841 pcre/pcrecpp_unittest.cc   CHECK(RE("(-\\d)").PartialMatch("-1234", &i));
PartialMatch     1006 pcre/pcrecpp_unittest.cc     CHECK(!RE("foo$").PartialMatch("foo\n"));
PartialMatch     1101 pcre/pcrecpp_unittest.cc   CHECK(RE("h.*o").PartialMatch("hello"));
PartialMatch     1102 pcre/pcrecpp_unittest.cc   CHECK(RE("h.*o").PartialMatch("othello"));
PartialMatch     1103 pcre/pcrecpp_unittest.cc   CHECK(RE("h.*o").PartialMatch("hello!"));
PartialMatch     1104 pcre/pcrecpp_unittest.cc   CHECK(RE("((((((((((((((((((((x))))))))))))))))))))").PartialMatch("x"));
PartialMatch     1158 pcre/pcrecpp_unittest.cc     CHECK(re_test3.PartialMatch(utf8_string, &ss));
PartialMatch     1161 pcre/pcrecpp_unittest.cc     CHECK(re_test4.PartialMatch(utf8_string, &ss));