Searched defs:FullMatch (Results 1 - 25 of 25) sorted by relevance

/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dregexp_adapter.h119 inline bool FullMatch(const string& input_string, function in class:i18n::phonenumbers::RegExp
124 inline bool FullMatch(const string& input_string) const { function in class:i18n::phonenumbers::RegExp
/external/chromium_org/third_party/mesa/src/src/gtest/src/
H A Dgtest-port.cc128 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
381 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
/external/chromium_org/third_party/re2/util/
H A Dpcre.h35 // 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("rub
305 static const FullMatchFunctor FullMatch; member in class:re2::PCRE
[all...]
H A Dpcre.cc49 const PCRE::FullMatchFunctor PCRE::FullMatch = { } ; member in class:re2::PCRE
/external/gtest/src/
H A Dgtest-port.cc154 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
407 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-port.cc128 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
381 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
/external/mesa3d/src/gtest/src/
H A Dgtest-port.cc128 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
381 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
/external/protobuf/gtest/src/
H A Dgtest-port.cc118 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
370 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
/external/regex-re2/util/
H A Dpcre.h35 // 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("rub
299 static const FullMatchFunctor FullMatch; member in class:re2::PCRE
[all...]
H A Dpcre.cc44 const PCRE::FullMatchFunctor PCRE::FullMatch = { } ; member in class:re2::PCRE
/external/pcre/dist/
H A Dpcrecpp.cc152 bool RE::FullMatch(const StringPiece& text, function in class:pcrecpp::RE
/external/chromium_org/testing/gtest/src/
H A Dgtest-port.cc537 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
790 bool RE::FullMatch(const char* str, const RE& re) { function in class:testing::internal::RE
/external/chromium_org/third_party/re2/re2/
H A Dre2.cc35 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::FullMatchN> RE2::FullMatch = {}; member in class:re2::RE2
H A Dre2.h36 // 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("rub
331 bool, const StringPiece&, const RE2&, Arg, RE2::FullMatchN> FullMatch; member in class:re2::RE2
[all...]
/external/llvm/utils/FileCheck/
H A DFileCheck.cpp423 StringRef FullMatch = MatchInfo[0]; local
433 MatchLen = FullMatch.size();
434 return FullMatch.data()-Buffer.data();
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-port.h639 // FullMatch(str, re) returns true iff regular expression re matches
644 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
647 static bool FullMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE
648 return FullMatch(str.c_str(), re);
656 static bool FullMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE
657 return FullMatch(str.c_str(), re);
664 static bool FullMatch(const char* str, const RE& re);
677 regex_t full_regex_; // For FullMatch().
680 const char* full_pattern_; // For FullMatch();
/external/regex-re2/re2/
H A Dre2.cc29 const VariadicFunction2<bool, const StringPiece&, const RE2&, RE2::Arg, RE2::FullMatchN> RE2::FullMatch; member in class:re2::RE2
H A Dre2.h36 // 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("rub
331 bool, const StringPiece&, const RE2&, Arg, RE2::FullMatchN> FullMatch; member in class:re2::RE2
[all...]
/external/chromium_org/third_party/mesa/src/src/gtest/include/gtest/internal/
H A Dgtest-port.h830 // 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) { function in class:testing::internal::RE
838 return FullMatch(str.c_str(), re);
846 static bool FullMatch(const ::string& str, const RE& re) { function in class:testing::internal::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();
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h840 // 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) { function in class:testing::internal::RE
848 return FullMatch(str.c_str(), re);
856 static bool FullMatch(const ::string& str, const RE& re) { function in class:testing::internal::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();
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-port.h830 // 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) { function in class:testing::internal::RE
838 return FullMatch(str.c_str(), re);
846 static bool FullMatch(const ::string& str, const RE& re) { function in class:testing::internal::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();
/external/chromium_org/testing/gtest/include/gtest/internal/
H A Dgtest-port.h1174 // FullMatch(str, re) returns true iff regular expression re matches
1179 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
1181 static bool FullMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE
1182 return FullMatch(str.c_str(), re);
1190 static bool FullMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE
1191 return FullMatch(str.c_str(), re);
1199 static bool FullMatch(const char* str, const RE& re);
1213 regex_t full_regex_; // For FullMatch().
1218 const char* full_pattern_; // For FullMatch();
/external/gtest/include/gtest/internal/
H A Dgtest-port.h947 // FullMatch(str, re) returns true iff regular expression re matches
952 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
954 static bool FullMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE
955 return FullMatch(str.c_str(), re);
963 static bool FullMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE
964 return FullMatch(str.c_str(), re);
972 static bool FullMatch(const char* str, const RE& re);
986 regex_t full_regex_; // For FullMatch().
991 const char* full_pattern_; // For FullMatch();
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2054 // FullMatch(str, re) returns true iff regular expression re matches
2059 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
2061 static bool FullMatch(const ::std::string& str, const RE& re) { function in class:std::tr1::RE
2062 return FullMatch(str.c_str(), re);
2070 static bool FullMatch(const ::string& str, const RE& re) { function in class:std::tr1::RE
2071 return FullMatch(str.c_str(), re);
2079 static bool FullMatch(const char* str, const RE& re);
2093 regex_t full_regex_; // For FullMatch().
2098 const char* full_pattern_; // For FullMatch();
/external/libvpx/libvpx/third_party/googletest/src/include/gtest/
H A Dgtest.h2054 // FullMatch(str, re) returns true iff regular expression re matches
2059 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
2061 static bool FullMatch(const ::std::string& str, const RE& re) { function in class:std::tr1::RE
2062 return FullMatch(str.c_str(), re);
2070 static bool FullMatch(const ::string& str, const RE& re) { function in class:std::tr1::RE
2071 return FullMatch(str.c_str(), re);
2079 static bool FullMatch(const char* str, const RE& re);
2093 regex_t full_regex_; // For FullMatch().
2098 const char* full_pattern_; // For FullMatch();

Completed in 773 milliseconds