HomeSort by relevance Sort by last modified time
    Searched full:partialmatch (Results 1 - 25 of 31) sorted by null

1 2

  /external/gtest/test/
gtest-port_test.cc 154 // Tests RE::PartialMatch().
157 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty));
158 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty));
161 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re));
162 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re));
163 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re));
164 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re));
165 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re));
618 // Tests RE::PartialMatch().
621 EXPECT_TRUE(RE::PartialMatch("", empty))
    [all...]
  /external/protobuf/gtest/test/
gtest-port_test.cc 212 // Tests RE::PartialMatch().
215 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty));
216 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty));
219 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re));
220 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re));
221 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re));
222 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re));
223 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re));
676 // Tests RE::PartialMatch().
679 EXPECT_TRUE(RE::PartialMatch("", empty))
    [all...]
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 391 // Tests RE::PartialMatch().
394 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty));
395 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty));
398 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re));
399 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re));
400 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re));
401 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re));
402 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re));
857 // Tests RE::PartialMatch().
860 EXPECT_TRUE(RE::PartialMatch("", empty))
    [all...]
  /external/pcre/
pcrecpp_unittest.cc 34 // 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_good) == true)
    [all...]
pcrecpp.h 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
    [all...]
pcregexp.pas 72 PartialMatch : boolean;
526 PartialMatch := MatchesCount = PCRE_ERROR_PARTIAL;
545 PartialMatch := MatchesCount = PCRE_ERROR_PARTIAL;
pcrecpp.cc 193 bool RE::PartialMatch(const StringPiece& text,
  /external/pcre/doc/
pcrecpp.3 122 You can use the "PartialMatch" operation when you want the pattern
126 pcrecpp::RE("ell").PartialMatch("hello");
131 re.PartialMatch("x*100 + 20", &number);
215 if (RE("HELLO", opt).PartialMatch("hello world")) ...
223 RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
229 .PartialMatch(str);
247 .set_multiline(true)).PartialMatch(sometext);
  /external/pcre/doc/html/
pcrecpp.html 142 You can use the "PartialMatch" operation when you want the pattern
146 pcrecpp::RE("ell").PartialMatch("hello");
151 re.PartialMatch("x*100 + 20", &number);
237 if (RE("HELLO", opt).PartialMatch("hello world")) ...
245 RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
251 .PartialMatch(str);
270 .set_multiline(true)).PartialMatch(sometext);
  /external/gtest/include/gtest/internal/
gtest-port.h 547 // PartialMatch(str, re) returns true iff regular expression re
550 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
556 static bool PartialMatch(const ::std::string& str, const RE& re) {
557 return PartialMatch(str.c_str(), re);
565 static bool PartialMatch(const ::string& str, const RE& re) {
566 return PartialMatch(str.c_str(), re);
571 static bool PartialMatch(const char* str, const RE& re);
584 regex_t partial_regex_; // For PartialMatch().
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 354 // TODO(wan): make PartialMatch() work when str contains NUL
357 static bool PartialMatch(const ::std::string& str, const RE& re) {
358 return PartialMatch(str.c_str(), re);
363 static bool PartialMatch(const ::string& str, const RE& re) {
364 return PartialMatch(str.c_str(), re);
368 static bool PartialMatch(const char* str, const RE& re);
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 641 // PartialMatch(str, re) returns true iff regular expression re
644 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
650 static bool PartialMatch(const ::std::string& str, const RE& re) {
651 return PartialMatch(str.c_str(), re);
659 static bool PartialMatch(const ::string& str, const RE& re) {
660 return PartialMatch(str.c_str(), re);
665 static bool PartialMatch(const char* str, const RE& re);
678 regex_t partial_regex_; // For PartialMatch().
    [all...]
gtest-death-test-internal.h 263 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 816 // PartialMatch(str, re) returns true iff regular expression re
819 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
824 static bool PartialMatch(const ::std::string& str, const RE& re) {
825 return PartialMatch(str.c_str(), re);
833 static bool PartialMatch(const ::string& str, const RE& re) {
834 return PartialMatch(str.c_str(), re);
840 static bool PartialMatch(const char* str, const RE& re);
855 regex_t partial_regex_; // For PartialMatch().
    [all...]
gtest-death-test-internal.h 297 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 837 // 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) {
846 return PartialMatch(str.c_str(), re);
854 static bool PartialMatch(const ::string& str, const RE& 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().
    [all...]
gtest-death-test-internal.h 297 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 58 bool RE::PartialMatch(const char* str, const RE& re) {
gtest-death-test.cc 405 if (RE::PartialMatch(error_message, *regex_)) {
  /external/chromium/testing/gtest/src/
gtest-port.cc 137 bool RE::PartialMatch(const char* str, const RE& re) {
387 bool RE::PartialMatch(const char* str, const RE& re) {
gtest-death-test.cc 515 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
    [all...]
  /external/collada/src/dae/
daeURI.cpp 147 findDir.PartialMatch(path, &dir, &tmpFile);
148 findExt.PartialMatch(tmpFile, &baseName, &extension);
  /external/gtest/src/
gtest-port.cc 96 bool RE::PartialMatch(const char* str, const RE& re) {
345 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/llvm/utils/unittest/googletest/
gtest-port.cc 137 bool RE::PartialMatch(const char* str, const RE& re) {
387 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/protobuf/gtest/src/
gtest-port.cc 127 bool RE::PartialMatch(const char* str, const RE& re) {
376 bool RE::PartialMatch(const char* str, const RE& re) {

Completed in 1817 milliseconds

1 2