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

1 2

  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
regexp_adapter.h 119 inline bool FullMatch(const string& input_string,
124 inline bool FullMatch(const string& input_string) const {
  /external/open-vcdiff/gtest/src/
gtest-port.cc 118 bool RE::FullMatch(const char* str, const RE& re) {
370 bool RE::FullMatch(const char* str, const RE& re) {
  /external/protobuf/gtest/src/
gtest-port.cc 118 bool RE::FullMatch(const char* str, const RE& re) {
370 bool RE::FullMatch(const char* str, const RE& re) {
  /external/chromium/testing/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/chromium_org/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/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 49 const PCRE::FullMatchFunctor PCRE::FullMatch = { } ;
    [all...]
  /external/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/libvpx/libvpx/third_party/googletest/src/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/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) {
  /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/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/chromium_org/third_party/re2/re2/
re2.cc 35 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/llvm/utils/FileCheck/
FileCheck.cpp 439 StringRef FullMatch = MatchInfo[0];
449 MatchLen = FullMatch.size();
450 return FullMatch.data()-Buffer.data();
    [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/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 646 // FullMatch(str, re) returns true iff regular expression re matches
651 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
654 static bool FullMatch(const ::std::string& str, const RE& re) {
655 return FullMatch(str.c_str(), re);
663 static bool FullMatch(const ::string& str, const RE& re) {
664 return FullMatch(str.c_str(), re);
671 static bool FullMatch(const char* str, const RE& re);
684 regex_t full_regex_; // For FullMatch().
687 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 639 // 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) {
648 return FullMatch(str.c_str(), re);
656 static bool FullMatch(const ::string& str, const RE& 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();
    [all...]
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-port.h 814 // FullMatch(str, re) returns true iff regular expression re matches
819 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
821 static bool FullMatch(const ::std::string& str, const RE& re) {
822 return FullMatch(str.c_str(), re);
830 static bool FullMatch(const ::string& str, const RE& re) {
831 return FullMatch(str.c_str(), re);
839 static bool FullMatch(const char* str, const RE& re);
854 regex_t full_regex_; // For FullMatch().
859 const char* full_pattern_; // For FullMatch();
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]
  /external/chromium_org/third_party/mesa/src/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...]

Completed in 1161 milliseconds

1 2