/external/google-breakpad/src/testing/gtest/src/ |
H A D | gtest-port.cc | 162 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE 412 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE
|
/external/gtest/src/ |
H A D | gtest-port.cc | 163 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE 413 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE
|
/external/llvm/utils/unittest/googletest/src/ |
H A D | gtest-port.cc | 137 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE 387 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE
|
/external/mesa3d/src/gtest/src/ |
H A D | gtest-port.cc | 137 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE 387 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE
|
/external/protobuf/gtest/src/ |
H A D | gtest-port.cc | 135 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE 385 bool RE::PartialMatch(const char* str, const RE& re) { function in class:testing::internal::RE
|
/external/regex-re2/util/ |
H A D | pcre.h | 88 // You can use the "PartialMatch" operation when you want the pattern 92 // CHECK(PCRE::PartialMatch("hello", "ell")); 96 // CHECK(PCRE::PartialMatch("x*100 + 20", "(\\d+)", &number)); 323 static const PartialMatchFunctor PartialMatch; member in class:re2::PCRE 325 // Like FullMatch() and PartialMatch(), except that pattern has to
|
H A D | pcre.cc | 43 const PCRE::PartialMatchFunctor PCRE::PartialMatch = { }; member in class:re2::PCRE
|
/external/pcre/dist/ |
H A D | pcrecpp.cc | 194 bool RE::PartialMatch(const StringPiece& text, function in class:pcrecpp::RE
|
/external/regex-re2/re2/ |
H A D | re2.cc | 30 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::PartialMatchN> RE2::PartialMatch; member in class:re2::RE2
|
H A D | re2.h | 88 // You can use the "PartialMatch" operation when you want the pattern 92 // CHECK(RE2::PartialMatch("hello", "ell")); 96 // CHECK(RE2::PartialMatch("x*100 + 20", "(\\d+)", &number)); 259 // conversions when passing string literals to FullMatch and PartialMatch. 338 bool, const StringPiece&, const RE2&, Arg, RE2::PartialMatchN> PartialMatch; member in class:re2::RE2 340 // Like FullMatch() and PartialMatch(), except that pattern has to
|
/external/llvm/utils/unittest/googletest/include/gtest/internal/ |
H A D | gtest-port.h | 842 // PartialMatch(str, re) returns true iff regular expression re 845 // TODO(wan@google.com): make FullMatch() and PartialMatch() work 850 static bool PartialMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE 851 return PartialMatch(str.c_str(), re); 859 static bool PartialMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE 860 return PartialMatch(str.c_str(), re); 866 static bool PartialMatch(const char* str, const RE& re); 881 regex_t partial_regex_; // For PartialMatch().
|
/external/mesa3d/src/gtest/include/gtest/internal/ |
H A D | gtest-port.h | 832 // PartialMatch(str, re) returns true iff regular expression re 835 // TODO(wan@google.com): make FullMatch() and PartialMatch() work 840 static bool PartialMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE 841 return PartialMatch(str.c_str(), re); 849 static bool PartialMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE 850 return PartialMatch(str.c_str(), re); 856 static bool PartialMatch(const char* str, const RE& re); 871 regex_t partial_regex_; // For PartialMatch().
|
/external/protobuf/gtest/include/gtest/internal/ |
H A D | gtest-port.h | 679 // PartialMatch(str, re) returns true iff regular expression re 682 // TODO(wan@google.com): make FullMatch() and PartialMatch() work 687 static bool PartialMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE 688 return PartialMatch(str.c_str(), re); 695 static bool PartialMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE 696 return PartialMatch(str.c_str(), re); 701 static bool PartialMatch(const char* str, const RE& re); 714 regex_t partial_regex_; // For PartialMatch().
|
/external/google-breakpad/src/testing/gtest/include/gtest/internal/ |
H A D | gtest-port.h | 856 // PartialMatch(str, re) returns true iff regular expression re 859 // TODO(wan@google.com): make FullMatch() and PartialMatch() work 864 static bool PartialMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE 865 return PartialMatch(str.c_str(), re); 873 static bool PartialMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE 874 return PartialMatch(str.c_str(), re); 880 static bool PartialMatch(const char* str, const RE& re); 895 regex_t partial_regex_; // For PartialMatch().
|
/external/gtest/include/gtest/internal/ |
H A D | gtest-port.h | 949 // PartialMatch(str, re) returns true iff regular expression re 952 // TODO(wan@google.com): make FullMatch() and PartialMatch() work 957 static bool PartialMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE 958 return PartialMatch(str.c_str(), re); 966 static bool PartialMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE 967 return PartialMatch(str.c_str(), re); 973 static bool PartialMatch(const char* str, const RE& re); 987 regex_t partial_regex_; // For PartialMatch().
|
/external/protobuf/gtest/fused-src/gtest/ |
H A D | gtest.h | 1741 // PartialMatch(str, re) returns true iff regular expression re 1744 // TODO(wan@google.com): make FullMatch() and PartialMatch() work 1749 static bool PartialMatch(const ::std::string& str, const RE& re) { function in class:std::tr1::RE 1750 return PartialMatch(str.c_str(), re); 1757 static bool PartialMatch(const ::string& str, const RE& re) { function in class:std::tr1::RE 1758 return PartialMatch(str.c_str(), re); 1763 static bool PartialMatch(const char* str, const RE& re); 1776 regex_t partial_regex_; // For PartialMatch(). 7619 ::testing::internal::RE::PartialMatch(".*", (regex)); \
|
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/ |
H A D | gtest.h | 2056 // PartialMatch(str, re) returns true iff regular expression re 2059 // TODO(wan@google.com): make FullMatch() and PartialMatch() work 2064 static bool PartialMatch(const ::std::string& str, const RE& re) { function in class:std::tr1::RE 2065 return PartialMatch(str.c_str(), re); 2073 static bool PartialMatch(const ::string& str, const RE& re) { function in class:std::tr1::RE 2074 return PartialMatch(str.c_str(), re); 2080 static bool PartialMatch(const char* str, const RE& re); 2094 regex_t partial_regex_; // For PartialMatch(). 8465 ::testing::internal::RE::PartialMatch(".*", (regex)); \
|