Searched refs:FullMatch (Results 1 - 6 of 6) sorted by relevance

/macosx-10.10.1/pcre-7/pcre/
H A Dpcrecpp_unittest.cc73 CHECK(pattern.FullMatch(p));
82 CHECK(pattern.FullMatch("ruby:1234", &i));
132 CHECK(RE("([0-9a-fA-F]+)[uUlL]*").FullMatch(#value, Hex(&v))); \
134 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0x" #value, CRadix(&v))); \
158 CHECK(RE("([0-7]+)[uUlL]*").FullMatch(#value, Octal(&v))); \
160 CHECK(RE("([0-9a-fA-FxX]+)[uUlL]*").FullMatch("0" #value, CRadix(&v))); \
184 CHECK(RE("(-?[0-9]+)[uUlL]*").FullMatch(#value, &v)); \
186 CHECK(RE("(-?[0-9a-fA-FxX]+)[uUlL]*").FullMatch(#value, CRadix(&v))); \
437 CHECK(RE("(foo)|hello").FullMatch("hello", &a));
457 CHECK(re.FullMatch(text_goo
[all...]
H A Dpcrecpp.h60 // The "FullMatch" operation checks that supplied text matches a
65 // re.FullMatch("hello");
69 // !re.FullMatch("hello");
72 // pcrecpp::RE("h.*o").FullMatch("hello");
91 // re.FullMatch("ruby:1234", &s, &i);
94 // re.FullMatch("ruby:1234", &s);
97 // re.FullMatch("ruby:1234", NULL, &i);
100 // !re.FullMatch("ruby:1234567891234", NULL, &i);
103 // !pcrecpp::RE("\\w+:\\d+").FullMatch("ruby:1234", &s);
106 // !pcrecpp::RE("(.*)").FullMatch("rub
[all...]
H A Dpcrecpp.cc151 bool RE::FullMatch(const StringPiece& text, function in class:pcrecpp::RE
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-port.h835 // FullMatch(str, re) returns true iff regular expression re matches
840 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
842 static bool FullMatch(const ::std::string& str, const RE& re) { function in class:testing::internal::RE
843 return FullMatch(str.c_str(), re);
851 static bool FullMatch(const ::string& str, const RE& re) { function in class:testing::internal::RE
852 return FullMatch(str.c_str(), re);
860 static bool FullMatch(const char* str, const RE& re);
875 regex_t full_regex_; // For FullMatch().
880 const char* full_pattern_; // For FullMatch();
/macosx-10.10.1/llvmCore-3425.0.34/utils/FileCheck/
H A DFileCheck.cpp337 StringRef FullMatch = MatchInfo[0]; local
346 MatchLen = FullMatch.size();
347 return FullMatch.data()-Buffer.data();
/macosx-10.10.1/llvmCore-3425.0.34/utils/unittest/googletest/
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

Completed in 205 milliseconds