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

1 2

  /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/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 153 bool RE::FullMatch(const char* str, const RE& re) {
406 bool RE::FullMatch(const char* str, const RE& re) {
  /external/pcre/pcrecpp/include/
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/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/regex-re2/util/
pcre.h 35 // The "FullMatch" operation checks that supplied text matches a
39 // CHECK(PCRE::FullMatch("hello", "h.*o"));
42 // CHECK(!PCRE::FullMatch("hello", "e"));
58 // CHECK(PCRE::FullMatch(utf8_string, re));
68 // CHECK(PCRE::FullMatch("ruby:1234", "(\\w+):(\\d+)", &s, &i));
71 // CHECK(!PCRE::FullMatch("ruby", "(.*)", &i));
74 // CHECK(!PCRE::FullMatch("ruby:1234", "\\w+:\\d+", &s));
77 // CHECK(PCRE::FullMatch("ruby:1234", "(\\w+):(\\d+)", &s));
80 // CHECK(PCRE::FullMatch("ruby:1234", "(\\w+):(\\d+)", NULL, &i));
83 // CHECK(!PCRE::FullMatch("ruby:1234567891234", "\\w+:(\\d+)", &i))
    [all...]
pcre.cc 44 const PCRE::FullMatchFunctor PCRE::FullMatch = { } ;
    [all...]
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-port.cc 128 bool RE::FullMatch(const char* str, const RE& re) {
381 bool RE::FullMatch(const char* str, const RE& re) {
  /prebuilts/ndk/r11/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) {
  /prebuilts/ndk/r13/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) {
  /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/googletest/googletest/src/
gtest-port.cc 577 bool RE::FullMatch(const char* str, const RE& re) {
830 bool RE::FullMatch(const char* str, const RE& re) {
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest-port.cc 577 bool RE::FullMatch(const char* str, const RE& re) {
830 bool RE::FullMatch(const char* str, const RE& re) {
    [all...]
  /external/regex-re2/re2/
re2.cc 29 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::FullMatchN> RE2::FullMatch;
    [all...]
re2.h 36 // The "FullMatch" operation checks that supplied text matches a
40 // CHECK(RE2::FullMatch("hello", "h.*o"));
43 // CHECK(!RE2::FullMatch("hello", "e"));
52 // CHECK(RE2::FullMatch(utf8_string, RE2(utf8_pattern)));
53 // CHECK(RE2::FullMatch(latin1_string, RE2(latin1_pattern, RE2::Latin1)));
63 // CHECK(RE2::FullMatch("ruby:1234", "(\\w+):(\\d+)", &s, &i));
66 // CHECK(!RE2::FullMatch("ruby", "(.*)", &i));
69 // CHECK(!RE2::FullMatch("ruby:1234", "\\w+:\\d+", &s));
72 // CHECK(RE2::FullMatch("ruby:1234", "(\\w+):(\\d+)", &s));
75 // CHECK(RE2::FullMatch("ruby:1234", "(\\w+):(\\d+)", NULL, &i))
    [all...]
  /external/v8/testing/gtest/src/
gtest-port.cc 559 bool RE::FullMatch(const char* str, const RE& re) {
812 bool RE::FullMatch(const char* str, const RE& re) {
    [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/src/
gtest-port.cc 536 bool RE::FullMatch(const char* str, const RE& re) {
789 bool RE::FullMatch(const char* str, const RE& re) {
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 463 StringRef FullMatch = MatchInfo[0];
471 MatchLen = FullMatch.size();
472 return FullMatch.data()-Buffer.data();
    [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/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/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/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/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...]

Completed in 912 milliseconds

1 2