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

1 2 3

  /external/pcre/pcrecpp/
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))); \
441 CHECK(RE("(foo)|hello").FullMatch("hello", &a));
461 CHECK(re.FullMatch(text_good) == false)
    [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/googletest/googletest/test/
gtest-port_test.cc 435 // Tests RE::FullMatch().
438 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
439 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
442 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
443 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
444 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
445 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
898 // Tests RE::FullMatch().
901 EXPECT_TRUE(RE::FullMatch("", empty));
902 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/v8/testing/gtest/test/
gtest-port_test.cc 435 // Tests RE::FullMatch().
438 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
439 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
442 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
443 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
444 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
445 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
898 // Tests RE::FullMatch().
901 EXPECT_TRUE(RE::FullMatch("", empty));
902 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...]
  /prebuilts/ndk/r11/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...]
  /prebuilts/ndk/r13/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/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/libvpx/libvpx/third_party/googletest/src/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 843 // FullMatch(str, re) returns true iff regular expression re matches
848 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
850 static bool FullMatch(const ::std::string& str, const RE& re) {
851 return FullMatch(str.c_str(), re);
859 static bool FullMatch(const ::string& str, const RE& re) {
860 return FullMatch(str.c_str(), re);
868 static bool FullMatch(const char* str, const RE& re);
883 regex_t full_regex_; // For FullMatch().
888 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/swiftshader/third_party/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...]
  /external/v8/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r11/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /prebuilts/ndk/r13/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/swiftshader/third_party/LLVM/utils/FileCheck/
FileCheck.cpp 334 StringRef FullMatch = MatchInfo[0];
343 MatchLen = FullMatch.size();
344 return FullMatch.data()-Buffer.data();
  /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) {

Completed in 1025 milliseconds

1 2 3