HomeSort by relevance Sort by last modified time
    Searched defs:PartialMatch (Results 1 - 25 of 31) 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/open-vcdiff/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/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/sdch/open-vcdiff/src/gtest/
gtest-port.cc 58 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/chromium/testing/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/testing/gtest/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/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 137 bool RE::PartialMatch(const char* str, const RE& re) {
387 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/libvpx/libvpx/third_party/googletest/src/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/llvm/utils/unittest/googletest/
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/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 354 // TODO(wan): make PartialMatch() work when str contains NUL
357 static bool PartialMatch(const ::std::string& str, const RE& re) {
358 return PartialMatch(str.c_str(), re);
363 static bool PartialMatch(const ::string& str, const RE& re) {
364 return PartialMatch(str.c_str(), re);
368 static bool PartialMatch(const char* str, const RE& re);
  /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/open-vcdiff/gtest/include/gtest/internal/
gtest-port.h 648 // PartialMatch(str, re) returns true iff regular expression re
651 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
657 static bool PartialMatch(const ::std::string& str, const RE& re) {
658 return PartialMatch(str.c_str(), re);
666 static bool PartialMatch(const ::string& str, const RE& re) {
667 return PartialMatch(str.c_str(), re);
672 static bool PartialMatch(const char* str, const RE& re);
685 regex_t partial_regex_; // For PartialMatch().
    [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/testing/gtest/include/gtest/internal/
gtest-port.h 816 // PartialMatch(str, re) returns true iff regular expression re
819 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
824 static bool PartialMatch(const ::std::string& str, const RE& re) {
825 return PartialMatch(str.c_str(), re);
833 static bool PartialMatch(const ::string& str, const RE& re) {
834 return PartialMatch(str.c_str(), re);
840 static bool PartialMatch(const char* str, const RE& re);
855 regex_t partial_regex_; // For PartialMatch().
    [all...]
  /external/chromium_org/testing/gtest/include/gtest/internal/
gtest-port.h     [all...]

Completed in 3525 milliseconds

1 2