HomeSort by relevance Sort by last modified time
    Searched refs:PartialMatch (Results 1 - 25 of 73) sorted by null

1 2 3

  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 6 // TODO: Test extractions for PartialMatch/Consume
331 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
335 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
339 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
343 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));
370 CHECK(RE2::PartialMatch("a chrisr:9000 here", re, &all, &host, &port));
522 TEST(RE2, PartialMatch) {
523 CHECK(RE2::PartialMatch("x", "x"));
524 CHECK(RE2::PartialMatch("hello", "h.*o"));
525 CHECK(RE2::PartialMatch("othello", "h.*o"))
    [all...]
regexp_benchmark.cc     [all...]
  /external/regex-re2/re2/testing/
re2_test.cc 6 // TODO: Test extractions for PartialMatch/Consume
324 CHECK(RE2::PartialMatch("foo", r, &word1, &word2, &word3));
328 CHECK(RE2::PartialMatch("bar", r, &word1, &word2, &word3));
332 CHECK(RE2::PartialMatch("baz", r, &word1, &word2, &word3));
336 CHECK(!RE2::PartialMatch("f", r, &word1, &word2, &word3));
363 CHECK(RE2::PartialMatch("a chrisr:9000 here", re, &all, &host, &port));
515 TEST(RE2, PartialMatch) {
516 CHECK(RE2::PartialMatch("x", "x"));
517 CHECK(RE2::PartialMatch("hello", "h.*o"));
518 CHECK(RE2::PartialMatch("othello", "h.*o"))
    [all...]
regexp_benchmark.cc     [all...]
  /external/chromium_org/third_party/re2/re2/
filtered_re2.cc 60 if (RE2::PartialMatch(text, *re2_vec_[i]))
74 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]]))
87 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]]))
  /external/regex-re2/re2/
filtered_re2.cc 60 if (RE2::PartialMatch(text, *re2_vec_[i]))
74 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]]))
87 if (RE2::PartialMatch(text, *re2_vec_[regexps[i]]))
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter.h 110 inline bool PartialMatch(const string& input_string,
115 inline bool PartialMatch(const string& input_string) const {
regexp_adapter_re2.cc 128 return DispatchRE2Call(RE2::PartialMatch, input_string, utf8_regexp_,
phonenumbermatcher.cc 576 if (reg_exps_->pub_pages_->PartialMatch(candidate) ||
577 reg_exps_->slash_separated_dates_->PartialMatch(candidate)) {
581 if (reg_exps_->time_stamps_->PartialMatch(candidate)) {
639 PartialMatch(candidate, &candidate);
    [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/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/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/chromium_org/testing/gtest/test/
gtest-port_test.cc 453 // Tests RE::PartialMatch().
456 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty));
457 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty));
460 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re));
461 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re));
462 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re));
463 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re));
464 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re));
919 // Tests RE::PartialMatch().
922 EXPECT_TRUE(RE::PartialMatch("", empty))
    [all...]
  /external/gtest/test/
gtest-port_test.cc 411 // Tests RE::PartialMatch().
414 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty));
415 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty));
418 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re));
419 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re));
420 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re));
421 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re));
422 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re));
877 // Tests RE::PartialMatch().
880 EXPECT_TRUE(RE::PartialMatch("", empty))
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-port_test.cc 453 // Tests RE::PartialMatch().
456 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty));
457 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty));
460 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re));
461 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re));
462 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re));
463 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re));
464 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re));
919 // Tests RE::PartialMatch().
922 EXPECT_TRUE(RE::PartialMatch("", empty))
    [all...]
  /external/chromium_org/gpu/config/
gpu_info_collector_win.cc 479 RE2::PartialMatch(gpu_info->gl_renderer,
482 RE2::PartialMatch(gpu_info->gl_renderer,
486 RE2::PartialMatch(gpu_info->gl_renderer,
506 RE2::PartialMatch(egl_vendor,
634 return RE2::PartialMatch(gl_version_string,
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 648 // PartialMatch(str, re) returns true iff regular expression re
651 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
657 static bool PartialMatch(const ::std::string& str, const RE& re) {
658 return PartialMatch(str.c_str(), re);
666 static bool PartialMatch(const ::string& str, const RE& re) {
667 return PartialMatch(str.c_str(), re);
672 static bool PartialMatch(const char* str, const RE& re);
685 regex_t partial_regex_; // For PartialMatch().
    [all...]
  /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...]
  /external/chromium_org/chrome/browser/chromeos/login/
hwid_checker.cc 47 return RE2::PartialMatch(hwid, "^(SPRING [A-D])|(FALCO A)");
  /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/chromium_org/testing/gtest/include/gtest/internal/
gtest-death-test-internal.h 308 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-death-test-internal.h 297 ::testing::internal::RE::PartialMatch(".*", (regex)); \
  /external/chromium_org/third_party/re2/util/
benchmark.cc 139 if(RE2::PartialMatch(name, argv[i]))
  /external/gtest/include/gtest/internal/
gtest-death-test-internal.h 297 ::testing::internal::RE::PartialMatch(".*", (regex)); \

Completed in 1640 milliseconds

1 2 3