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

  /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) {
  /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().

Completed in 667 milliseconds