HomeSort by relevance Sort by last modified time
    Searched refs:FullMatch (Results 1 - 18 of 18) sorted by null

  /external/pcre/
pcrecpp_unittest.cc 73 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_good) == false)
    [all...]
pcrecpp.h 60 // 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("ruby", &i)
    [all...]
pcrecpp.cc 151 bool RE::FullMatch(const StringPiece& text,
  /external/gtest/test/
gtest-port_test.cc 141 // Tests RE::FullMatch().
144 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
145 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
148 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
149 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
150 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
151 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
602 // Tests RE::FullMatch().
605 EXPECT_TRUE(RE::FullMatch("", empty));
606 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/protobuf/gtest/test/
gtest-port_test.cc 199 // Tests RE::FullMatch().
202 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
203 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
206 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
207 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
208 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
209 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
660 // Tests RE::FullMatch().
663 EXPECT_TRUE(RE::FullMatch("", empty));
664 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 545 // FullMatch(str, re) returns true iff regular expression re matches
550 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
553 static bool FullMatch(const ::std::string& str, const RE& re) {
554 return FullMatch(str.c_str(), re);
562 static bool FullMatch(const ::string& str, const RE& re) {
563 return FullMatch(str.c_str(), re);
570 static bool FullMatch(const char* str, const RE& re);
583 regex_t full_regex_; // For FullMatch().
586 const char* full_pattern_; // For FullMatch();
  /external/chromium/testing/gtest/test/
gtest-port_test.cc 378 // Tests RE::FullMatch().
381 EXPECT_TRUE(RE::FullMatch(TypeParam(""), empty));
382 EXPECT_FALSE(RE::FullMatch(TypeParam("a"), empty));
385 EXPECT_TRUE(RE::FullMatch(TypeParam("az"), re));
386 EXPECT_TRUE(RE::FullMatch(TypeParam("axyz"), re));
387 EXPECT_FALSE(RE::FullMatch(TypeParam("baz"), re));
388 EXPECT_FALSE(RE::FullMatch(TypeParam("azy"), re));
841 // Tests RE::FullMatch().
844 EXPECT_TRUE(RE::FullMatch("", empty));
845 EXPECT_FALSE(RE::FullMatch("a", empty))
    [all...]
gtest-printers_test.cc     [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/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-port.h 835 // 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) {
843 return FullMatch(str.c_str(), re);
851 static bool FullMatch(const ::string& str, const RE& 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();
    [all...]
  /external/llvm/utils/FileCheck/
FileCheck.cpp 337 StringRef FullMatch = MatchInfo[0];
346 MatchLen = FullMatch.size();
347 return FullMatch.data()-Buffer.data();
  /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/gtest/src/
gtest-port.cc 87 bool RE::FullMatch(const char* str, const RE& re) {
339 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/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/collada/src/dae/
daeURI.cpp 141 //re.FullMatch(path, &dir, &baseName, &extension);
709 if (re.FullMatch(uriRef, &s1, &scheme, &s3, &authority, &path, &s6, &query, &s8, &fragment))
  /external/chromium/testing/gmock/include/gmock/
gmock-matchers.h     [all...]

Completed in 341 milliseconds