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

1 2

  /external/pcre/dist/
pcrecpp_unittest.cc 74 CHECK(pattern.FullMatch(p));
83 CHECK(pattern.FullMatch("ruby:1234", &i));
133 CHECK(RE("([0-9a-fA-F]+)[uUlL]*").FullMatch(#value, Hex(&v))); \
135 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0x" #value, CRadix(&v))); \
159 CHECK(RE("([0-7]+)[uUlL]*").FullMatch(#value, Octal(&v))); \
161 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0" #value, CRadix(&v))); \
185 CHECK(RE("(-?[0-9]+)[uUlL]*").FullMatch(#value, &v)); \
187 CHECK(RE("(-?[0-9a-fA-FxX]+)[uUlL]*").FullMatch(#value, CRadix(&v))); \
438 CHECK(RE("(foo)|hello").FullMatch("hello", &a));
458 CHECK(re.FullMatch(text_good) == false)
    [all...]
pcrecpp.h 60 // The "FullMatch" operation checks that supplied text matches a
65 // re.FullMatch("hello");
69 // !re.FullMatch("hello");
72 // pcrecpp::RE("h.*o").FullMatch("hello");
91 // re.FullMatch("ruby:1234", &s, &i);
94 // re.FullMatch("ruby:1234", &s);
97 // re.FullMatch("ruby:1234", NULL, &i);
100 // !re.FullMatch("ruby:1234567891234", NULL, &i);
103 // !pcrecpp::RE("\\w+:\\d+").FullMatch("ruby:1234", &s);
106 // !pcrecpp::RE("(.*)").FullMatch("ruby", &i)
    [all...]
  /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/regex-re2/
testinstall.cc 18 if(RE2::FullMatch("axbyc", "a.*b.*c")) {
  /external/google-breakpad/src/testing/gtest/test/
gtest-port_test.cc 403 // Tests RE::FullMatch().
406 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
407 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
410 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
411 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
412 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
413 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
866 // Tests RE::FullMatch().
869 EXPECT_TRUE(RE::FullMatch("", empty));
870 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/gtest/test/
gtest-port_test.cc 433 // Tests RE::FullMatch().
436 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
437 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
440 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
441 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
442 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
443 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
896 // Tests RE::FullMatch().
899 EXPECT_TRUE(RE::FullMatch("", empty));
900 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/protobuf/gtest/test/
gtest-port_test.cc 210 // Tests RE::FullMatch().
213 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
214 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
217 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
218 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
219 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
220 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
673 // Tests RE::FullMatch().
676 EXPECT_TRUE(RE::FullMatch("", empty));
677 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/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...]
  /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/protobuf/gtest/include/gtest/internal/
gtest-port.h 677 // FullMatch(str, re) returns true iff regular expression re matches
682 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
684 static bool FullMatch(const ::std::string& str, const RE& re) {
685 return FullMatch(str.c_str(), re);
692 static bool FullMatch(const ::string& str, const RE& re) {
693 return FullMatch(str.c_str(), re);
700 static bool FullMatch(const char* str, const RE& re);
713 regex_t full_regex_; // For FullMatch().
716 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-port.h 854 // FullMatch(str, re) returns true iff regular expression re matches
859 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
861 static bool FullMatch(const ::std::string& str, const RE& re) {
862 return FullMatch(str.c_str(), re);
870 static bool FullMatch(const ::string& str, const RE& re) {
871 return FullMatch(str.c_str(), re);
879 static bool FullMatch(const char* str, const RE& re);
894 regex_t full_regex_; // For FullMatch().
899 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 840 // FullMatch(str, re) returns true iff regular expression re matches
845 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
847 static bool FullMatch(const ::std::string& str, const RE& re) {
848 return FullMatch(str.c_str(), re);
856 static bool FullMatch(const ::string& str, const RE& re) {
857 return FullMatch(str.c_str(), re);
865 static bool FullMatch(const char* str, const RE& re);
880 regex_t full_regex_; // For FullMatch().
885 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/mesa3d/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/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 128 bool RE::FullMatch(const char* str, const RE& re) {
381 bool RE::FullMatch(const char* str, const RE& re) {
  /external/mesa3d/src/gtest/src/
gtest-port.cc 128 bool RE::FullMatch(const char* str, const RE& re) {
381 bool RE::FullMatch(const char* str, const RE& re) {
  /external/protobuf/gtest/src/
gtest-port.cc 126 bool RE::FullMatch(const char* str, const RE& re) {
379 bool RE::FullMatch(const char* str, const RE& re) {
  /external/google-breakpad/src/testing/gtest/src/
gtest-port.cc 153 bool RE::FullMatch(const char* str, const RE& re) {
406 bool RE::FullMatch(const char* str, const RE& re) {
  /external/gtest/src/
gtest-port.cc 176 bool RE::FullMatch(const char* str, const RE& re) {
429 bool RE::FullMatch(const char* str, const RE& re) {
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 153 bool RE::FullMatch(const char* str, const RE& re) {
406 bool RE::FullMatch(const char* str, const RE& re) {
  /system/core/crash_reporter/
user_collector.cc 562 if (re.FullMatch(crash_attributes, pid, signal, uid, gid,
571 return re_without_uid.FullMatch(crash_attributes, pid, signal,

Completed in 633 milliseconds

1 2