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

  /external/protobuf/gtest/src/
gtest-port.cc 127 bool RE::PartialMatch(const char* str, const RE& re) {
376 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/chromium/sdch/open-vcdiff/src/gtest/
gtest-port.cc 58 bool RE::PartialMatch(const char* str, const RE& re) {
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-port.h 354 // TODO(wan): make PartialMatch() work when str contains NUL
357 static bool PartialMatch(const ::std::string& str, const RE& re) {
358 return PartialMatch(str.c_str(), re);
363 static bool PartialMatch(const ::string& str, const RE& re) {
364 return PartialMatch(str.c_str(), re);
368 static bool PartialMatch(const char* str, const RE& re);
  /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().
  /external/protobuf/gtest/include/gtest/internal/
gtest-port.h 641 // PartialMatch(str, re) returns true iff regular expression re
644 // TODO(wan@google.com): make FullMatch() and PartialMatch() work
650 static bool PartialMatch(const ::std::string& str, const RE& re) {
651 return PartialMatch(str.c_str(), re);
659 static bool PartialMatch(const ::string& str, const RE& re) {
660 return PartialMatch(str.c_str(), re);
665 static bool PartialMatch(const char* str, const RE& re);
678 regex_t partial_regex_; // For PartialMatch().
    [all...]

Completed in 49 milliseconds