Home | History | Annotate | Download | only in internal

Lines Matching defs:RE

96 //   RE             - a simple regular expression class using the POSIX
331 // Defines RE. Currently only needed for death tests.
335 class RE {
337 // Constructs an RE from a string.
339 RE(const ::std::string& regex) { Init(regex.c_str()); } // NOLINT
343 RE(const ::string& regex) { Init(regex.c_str()); } // NOLINT
346 RE(const char* regex) { Init(regex); } // NOLINT
347 ~RE();
352 // Returns true iff str contains regular expression re.
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);