Home | History | Annotate | Download | only in googletest

Lines Matching refs:regex

292 bool DeathTest::Create(const char* statement, const RE* regex,
295 statement, regex, file, line, test);
327 const RE* regex() const { return regex_; }
436 // regex: A regular expression object to be applied to
468 const bool matched = RE::PartialMatch(error_message.c_str(), *regex());
473 << " Expected: " << regex()->pattern() << "\n"
523 const RE* regex,
526 : DeathTestImpl(statement, regex), file_(file), line_(line) {}
694 ForkingDeathTest(const char* statement, const RE* regex);
991 bool DefaultDeathTestFactory::Create(const char* statement, const RE* regex,
1018 *test = new WindowsDeathTest(statement, regex, file, line);
1022 *test = new ExecDeathTest(statement, regex, file, line);
1024 *test = new NoExecDeathTest(statement, regex);