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

1 2

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter.h 110 inline bool PartialMatch(const string& input_string,
115 inline bool PartialMatch(const string& input_string) const {
  /external/chromium_org/components/component_updater/test/
url_request_post_interceptor.h 171 class PartialMatch : public URLRequestPostInterceptor::RequestMatcher {
173 explicit PartialMatch(const std::string& expected) : expected_(expected) {}
179 DISALLOW_COPY_AND_ASSIGN(PartialMatch);
  /external/protobuf/gtest/src/
gtest-port.cc 127 bool RE::PartialMatch(const char* str, const RE& re) {
376 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-port.cc 137 bool RE::PartialMatch(const char* str, const RE& re) {
387 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/chromium_org/third_party/re2/util/
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));
329 static const PartialMatchFunctor PartialMatch;
331 // Like FullMatch() and PartialMatch(), except that pattern has to
pcre.cc 48 const PCRE::PartialMatchFunctor PCRE::PartialMatch = { };
    [all...]
  /external/gtest/src/
gtest-port.cc 163 bool RE::PartialMatch(const char* str, const RE& re) {
413 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 137 bool RE::PartialMatch(const char* str, const RE& re) {
387 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/mesa3d/src/gtest/src/
gtest-port.cc 137 bool RE::PartialMatch(const char* str, const RE& re) {
387 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/regex-re2/util/
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;
325 // Like FullMatch() and PartialMatch(), except that pattern has to
pcre.cc 43 const PCRE::PartialMatchFunctor PCRE::PartialMatch = { };
    [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest-port.cc 162 bool RE::PartialMatch(const char* str, const RE& re) {
412 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/pcre/dist/
pcrecpp.cc 194 bool RE::PartialMatch(const StringPiece& text,
  /external/chromium_org/testing/gtest/src/
gtest-port.cc 546 bool RE::PartialMatch(const char* str, const RE& re) {
796 bool RE::PartialMatch(const char* str, const RE& re) {
    [all...]
  /external/chromium_org/third_party/re2/re2/
re2.cc 36 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::PartialMatchN> RE2::PartialMatch = {};
    [all...]
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;
340 // Like FullMatch() and PartialMatch(), except that pattern has to
    [all...]
  /external/regex-re2/re2/
re2.cc 30 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::PartialMatchN> RE2::PartialMatch;
    [all...]
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;
340 // Like FullMatch() and PartialMatch(), except that pattern has to
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 641 // PartialMatch(str, re) returns true iff regular expression re
644 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
650 static bool PartialMatch(const ::std::string& str, const RE& re) {
651 return PartialMatch(str.c_str(), re);
659 static bool PartialMatch(const ::string& str, const RE& re) {
660 return PartialMatch(str.c_str(), re);
665 static bool PartialMatch(const char* str, const RE& re);
678 regex_t partial_regex_; // For PartialMatch().
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
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) {
841 return PartialMatch(str.c_str(), re);
849 static bool PartialMatch(const ::string& str, const RE& 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().
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
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) {
851 return PartialMatch(str.c_str(), re);
859 static bool PartialMatch(const ::string& str, const RE& 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().
    [all...]
  /external/mesa3d/src/gtest/include/gtest/internal/
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) {
841 return PartialMatch(str.c_str(), re);
849 static bool PartialMatch(const ::string& str, const RE& 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().
    [all...]
  /ndk/sources/third_party/googletest/googletest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]

Completed in 1378 milliseconds

1 2