MCPcopy Create free account
hub / github.com/Kitware/CMake / Match

Method Match

Source/CTest/cmCTestLaunchReporter.cxx:291–300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

289}
290
291bool cmCTestLaunchReporter::Match(
292 std::string const& line, std::vector<cmsys::RegularExpression>& regexps)
293{
294 for (cmsys::RegularExpression& r : regexps) {
295 if (r.find(line)) {
296 return true;
297 }
298 }
299 return false;
300}
301
302bool cmCTestLaunchReporter::MatchesFilterPrefix(std::string const& line) const
303{

Callers 2

DumpFileToXMLMethod · 0.95
ScrapeLogMethod · 0.45

Calls 1

findMethod · 0.45

Tested by

no test coverage detected