HomeSort by relevance Sort by last modified time
    Searched defs:FullMatch (Results 1 - 25 of 26) 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/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) {
  /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/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...]
  /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) {
  /external/pcre/dist/
pcrecpp.cc 152 bool RE::FullMatch(const StringPiece& text,
  /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/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 436 StringRef FullMatch = MatchInfo[0];
444 MatchLen = FullMatch.size();
445 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/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/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/protobuf/src/google/protobuf/
descriptor_unittest.cc     [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/libvpx/libvpx/third_party/googletest/src/include/gtest/
gtest.h     [all...]
  /external/opencv3/modules/ts/include/opencv2/ts/
ts_gtest.h     [all...]
  /external/protobuf/gtest/fused-src/gtest/
gtest.h     [all...]
  /external/vulkan-validation-layers/tests/gtest-1.7.0/fused-src/gtest/
gtest.h     [all...]

Completed in 231 milliseconds

1 2