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

  /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/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();

Completed in 85 milliseconds