• Home
  • Raw
  • Download

Lines Matching refs:PartialMatch

423   CHECK(r.PartialMatch("foo", &word1, &word2, &word3));  in TestMatchNumberPeculiarity()
427 CHECK(r.PartialMatch("bar", &word1, &word2, &word3)); in TestMatchNumberPeculiarity()
431 CHECK(r.PartialMatch("baz", &word1, &word2, &word3)); in TestMatchNumberPeculiarity()
435 CHECK(!r.PartialMatch("f", &word1, &word2, &word3)); in TestMatchNumberPeculiarity()
456 CHECK(re.PartialMatch(text_good) == true); in TestRecursion()
457 CHECK(re.PartialMatch(text_bad) == false); in TestRecursion()
463 CHECK(re2.PartialMatch(text_good) == false); // because of match_limit in TestRecursion()
464 CHECK(re2.PartialMatch(text_bad) == false); in TestRecursion()
471 CHECK(re3.PartialMatch(text_good) == true); in TestRecursion()
472 CHECK(re3.PartialMatch(text_bad) == false); in TestRecursion()
478 CHECK(re4.PartialMatch(text_good) == false); in TestRecursion()
479 CHECK(re4.PartialMatch(text_bad) == false); in TestRecursion()
582 RE(regex,options).PartialMatch(str, &captured); in GetOneOptionResult()
604 CHECK(RE(regex,options).PartialMatch(str)); in TestOneOption()
609 CHECK(!RE(regex,options).PartialMatch(str)); in TestOneOption()
872 CHECK(RE("(\\d)").PartialMatch("1234", &i)); in main()
874 CHECK(RE("(-\\d)").PartialMatch("-1234", &i)); in main()
1057 CHECK(!RE("foo$").PartialMatch("foo\n")); in main()
1152 CHECK(RE("h.*o").PartialMatch("hello")); in main()
1153 CHECK(RE("h.*o").PartialMatch("othello")); in main()
1154 CHECK(RE("h.*o").PartialMatch("hello!")); in main()
1155 CHECK(RE("((((((((((((((((((((x))))))))))))))))))))").PartialMatch("x")); in main()
1209 CHECK(re_test3.PartialMatch(utf8_string, &ss)); in main()
1212 CHECK(re_test4.PartialMatch(utf8_string, &ss)); in main()