Lines Matching refs:regex_match
68 if (std::regex_match(report[ix], section_re) && in SummariseCRCChanges()
69 !std::regex_match(report[ix], symbol_re)) { in SummariseCRCChanges()
73 std::regex_match(report[ix], symbol_changed_re) && in SummariseCRCChanges()
74 std::regex_match(report[ix + 1], crc_re) && in SummariseCRCChanges()
75 std::regex_match(report[ix + 2], empty_re)) { in SummariseCRCChanges()
122 if (ix + 2 < report.size() && std::regex_match(report[ix], match1, re1) && in SummariseOffsetChanges()
123 std::regex_match(report[ix + 1], match2, re2) && in SummariseOffsetChanges()
124 std::regex_match(report[ix + 2], match3, re3)) { in SummariseOffsetChanges()
180 std::regex_match(report[ix], match, symbol_re) && in GroupRemovedAddedSymbols()
181 std::regex_match(report[ix + 1], empty_re)) { in GroupRemovedAddedSymbols()
220 if (std::regex_match(line, match, re)) { in SummariseEnumeratorAdditionsAndRemovals()