Searched refs:PartialMatch (Results 1 - 8 of 8) sorted by relevance

/macosx-10.10.1/pcre-7/pcre/
H A Dpcrecpp_unittest.cc34 // TODO: Test extractions for PartialMatch/Consume
422 CHECK(r.PartialMatch("foo", &word1, &word2, &word3));
426 CHECK(r.PartialMatch("bar", &word1, &word2, &word3));
430 CHECK(r.PartialMatch("baz", &word1, &word2, &word3));
434 CHECK(!r.PartialMatch("f", &word1, &word2, &word3));
455 CHECK(re.PartialMatch(text_good) == true);
456 CHECK(re.PartialMatch(text_bad) == false);
462 CHECK(re2.PartialMatch(text_good) == false); // because of match_limit
463 CHECK(re2.PartialMatch(text_bad) == false);
470 CHECK(re3.PartialMatch(text_goo
[all...]
H A Dpcrecpp.h131 // 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(cons
[all...]
H A Dpcregexp.pas72 PartialMatch : boolean;
526 PartialMatch := MatchesCount = PCRE_ERROR_PARTIAL;
545 PartialMatch := MatchesCount = PCRE_ERROR_PARTIAL;
H A Dpcrecpp.cc193 bool RE::PartialMatch(const StringPiece& text, function in class:pcrecpp::RE
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-death-test-internal.h295 ::testing::internal::RE::PartialMatch(".*", (regex)); \
H A Dgtest-port.h837 // PartialMatch(str, re) returns true iff regular expression re
840 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
845 static bool PartialMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE
846 return PartialMatch(str.c_str(), re);
854 static bool PartialMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE
855 return PartialMatch(str.c_str(), re);
861 static bool PartialMatch(const char* str, const RE& re);
876 regex_t partial_regex_; // For PartialMatch().
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/
H A Dgtest-port.cc137 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE
387 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE
H A Dgtest-death-test.cc515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());

Completed in 198 milliseconds