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

1 2 3

  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 35 CHECK(RE2::FullMatch(#value, "([0-9a-fA-F]+)[uUlL]*", RE2::Hex(&v))); \
37 CHECK(RE2::FullMatch("0x" #value, "([0-9a-fA-FxX]+)[uUlL]*", RE2::CRadix(&v))); \
59 CHECK(RE2::FullMatch(#value, "([0-7]+)[uUlL]*", RE2::Octal(&v))); \
61 CHECK(RE2::FullMatch("0" #value, "([0-9a-fA-FxX]+)[uUlL]*", RE2::CRadix(&v))); \
83 CHECK(RE2::FullMatch(#value, "(-?[0-9]+)[uUlL]*", &v)); \
85 CHECK(RE2::FullMatch(#value, "(-?[0-9a-fA-FxX]+)[uUlL]*", RE2::CRadix(&v))); \
346 CHECK(RE2::FullMatch("hello", "(foo)|hello", &a));
386 RE2::FullMatch(domain, re);
395 EXPECT_TRUE_M(RE2::FullMatch(unquoted, re),
405 EXPECT_FALSE_M(RE2::FullMatch(should_not_match, re)
    [all...]
regexp_benchmark.cc 71 PCRE::FullMatch(text, re);
80 PCRE::FullMatch(text, *re);
90 RE2::FullMatch(text, re);
    [all...]
possible_match_test.cc 216 if (!RE2::FullMatch(s, re))
  /external/regex-re2/re2/testing/
re2_test.cc 28 CHECK(RE2::FullMatch(#value, "([0-9a-fA-F]+)[uUlL]*", RE2::Hex(&v))); \
30 CHECK(RE2::FullMatch("0x" #value, "([0-9a-fA-FxX]+)[uUlL]*", RE2::CRadix(&v))); \
52 CHECK(RE2::FullMatch(#value, "([0-7]+)[uUlL]*", RE2::Octal(&v))); \
54 CHECK(RE2::FullMatch("0" #value, "([0-9a-fA-FxX]+)[uUlL]*", RE2::CRadix(&v))); \
76 CHECK(RE2::FullMatch(#value, "(-?[0-9]+)[uUlL]*", &v)); \
78 CHECK(RE2::FullMatch(#value, "(-?[0-9a-fA-FxX]+)[uUlL]*", RE2::CRadix(&v))); \
339 CHECK(RE2::FullMatch("hello", "(foo)|hello", &a));
379 RE2::FullMatch(domain, re);
388 EXPECT_TRUE_M(RE2::FullMatch(unquoted, re),
398 EXPECT_FALSE_M(RE2::FullMatch(should_not_match, re)
    [all...]
regexp_benchmark.cc 71 PCRE::FullMatch(text, re);
80 PCRE::FullMatch(text, *re);
90 RE2::FullMatch(text, re);
    [all...]
possible_match_test.cc 216 if (!RE2::FullMatch(s, re))
  /external/chromium_org/third_party/re2/
testinstall.cc 18 if(RE2::FullMatch("axbyc", "a.*b.*c")) {
  /external/regex-re2/
testinstall.cc 18 if(RE2::FullMatch("axbyc", "a.*b.*c")) {
  /external/chromium_org/chrome/browser/chromeos/login/
hwid_checker.cc 41 if (!RE2::FullMatch(hwid, "([\\s\\S]*) (\\d{4})", &body, &checksum))
65 if (!RE2::FullMatch(hwid, "[A-Z0-9]+ ((?:[A-Z2-7]{4}-)*[A-Z2-7]{1,4})", &bom))
96 if (!RE2::FullMatch(hwid, regex, &not_checksum, &checksum))
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
shortnumberutil.cc 73 ? emergency_number_pattern->FullMatch(extracted_number)
regexp_adapter.h 119 inline bool FullMatch(const string& input_string,
124 inline bool FullMatch(const string& input_string) const {
regexp_adapter_re2.cc 125 return DispatchRE2Call(RE2::FullMatch, input_string, utf8_regexp_,
phonenumberutil.cc 201 .FullMatch(national_number) &&
203 .FullMatch(national_number);
359 if (number_pattern.FullMatch(number, &extracted_number)) {
    [all...]
  /external/protobuf/gtest/test/
gtest-port_test.cc 199 // Tests RE::FullMatch().
202 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
203 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
206 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
207 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
208 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
209 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
660 // Tests RE::FullMatch().
663 EXPECT_TRUE(RE::FullMatch("", empty));
664 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 378 // Tests RE::FullMatch().
381 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
382 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
385 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
386 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
387 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
388 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
841 // Tests RE::FullMatch().
844 EXPECT_TRUE(RE::FullMatch("", empty));
845 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest-port_test.cc 440 // Tests RE::FullMatch().
443 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
444 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
447 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
448 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
449 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
450 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
903 // Tests RE::FullMatch().
906 EXPECT_TRUE(RE::FullMatch("", empty));
907 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/gtest/test/
gtest-port_test.cc 398 // Tests RE::FullMatch().
401 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
402 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
405 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
406 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
407 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
408 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
861 // Tests RE::FullMatch().
864 EXPECT_TRUE(RE::FullMatch("", empty));
865 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest-port_test.cc 440 // Tests RE::FullMatch().
443 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
444 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
447 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
448 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
449 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
450 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
903 // Tests RE::FullMatch().
906 EXPECT_TRUE(RE::FullMatch("", empty));
907 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 646 // FullMatch(str, re) returns true iff regular expression re matches
651 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
654 static bool FullMatch(const ::std::string& str, const RE& re) {
655 return FullMatch(str.c_str(), re);
663 static bool FullMatch(const ::string& str, const RE& re) {
664 return FullMatch(str.c_str(), re);
671 static bool FullMatch(const char* str, const RE& re);
684 regex_t full_regex_; // For FullMatch().
687 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 639 // FullMatch(str, re) returns true iff regular expression re matches
644 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
647 static bool FullMatch(const ::std::string& str, const RE& re) {
648 return FullMatch(str.c_str(), re);
656 static bool FullMatch(const ::string& str, const RE& re) {
657 return FullMatch(str.c_str(), re);
664 static bool FullMatch(const char* str, const RE& re);
677 regex_t full_regex_; // For FullMatch().
680 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 814 // FullMatch(str, re) returns true iff regular expression re matches
819 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
821 static bool FullMatch(const ::std::string& str, const RE& re) {
822 return FullMatch(str.c_str(), re);
830 static bool FullMatch(const ::string& str, const RE& re) {
831 return FullMatch(str.c_str(), re);
839 static bool FullMatch(const char* str, const RE& re);
854 regex_t full_regex_; // For FullMatch().
859 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
gtest-port.h 830 // FullMatch(str, re) returns true iff regular expression re matches
835 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
837 static bool FullMatch(const ::std::string& str, const RE& re) {
838 return FullMatch(str.c_str(), re);
846 static bool FullMatch(const ::string& str, const RE& re) {
847 return FullMatch(str.c_str(), re);
855 static bool FullMatch(const char* str, const RE& re);
870 regex_t full_regex_; // For FullMatch().
875 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 848 // FullMatch(str, re) returns true iff regular expression re matches
853 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
855 static bool FullMatch(const ::std::string& str, const RE& re) {
856 return FullMatch(str.c_str(), re);
864 static bool FullMatch(const ::string& str, const RE& re) {
865 return FullMatch(str.c_str(), re);
873 static bool FullMatch(const char* str, const RE& re);
888 regex_t full_regex_; // For FullMatch().
893 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 835 // FullMatch(str, re) returns true iff regular expression re matches
840 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
842 static bool FullMatch(const ::std::string& str, const RE& re) {
843 return FullMatch(str.c_str(), re);
851 static bool FullMatch(const ::string& str, const RE& re) {
852 return FullMatch(str.c_str(), re);
860 static bool FullMatch(const char* str, const RE& re);
875 regex_t full_regex_; // For FullMatch().
880 const char* full_pattern_; // For FullMatch();
    [all...]

Completed in 381 milliseconds

1 2 3