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

  /external/gtest/test/
gtest-port_test.cc 154 // Tests RE::PartialMatch().
157 EXPECT_TRUE(RE::PartialMatch(TypeParam(""), empty));
158 EXPECT_TRUE(RE::PartialMatch(TypeParam("a"), empty));
161 EXPECT_TRUE(RE::PartialMatch(TypeParam("az"), re));
162 EXPECT_TRUE(RE::PartialMatch(TypeParam("axyz"), re));
163 EXPECT_TRUE(RE::PartialMatch(TypeParam("baz"), re));
164 EXPECT_TRUE(RE::PartialMatch(TypeParam("azy"), re));
165 EXPECT_FALSE(RE::PartialMatch(TypeParam("zza"), re));
618 // Tests RE::PartialMatch().
621 EXPECT_TRUE(RE::PartialMatch("", empty))
    [all...]
  /external/gtest/include/gtest/internal/
gtest-port.h 547 // PartialMatch(str, re) returns true iff regular expression re
550 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
556 static bool PartialMatch(const ::std::string& str, const RE& re) {
557 return PartialMatch(str.c_str(), re);
565 static bool PartialMatch(const ::string& str, const RE& re) {
566 return PartialMatch(str.c_str(), re);
571 static bool PartialMatch(const char* str, const RE& re);
584 regex_t partial_regex_; // For PartialMatch().
  /external/gtest/src/
gtest-port.cc 96 bool RE::PartialMatch(const char* str, const RE& re) {
345 bool RE::PartialMatch(const char* str, const RE& re) {
gtest-death-test.cc 830 if (RE::PartialMatch(error_message, *regex())) {
    [all...]

Completed in 117 milliseconds