Lines Matching refs:regex
174 static std::regex regexes[] = { in getLocation()
175 std::regex( in getLocation()
178 std::regex( in getLocation()
180 std::regex(R"(^undefined symbol:.*\n>>> referenced by (.*):)"), in getLocation()
181 std::regex( in getLocation()
183 std::regex( in getLocation()
185 std::regex(R"(^duplicate symbol: .*\n>>> defined at (\S+):(\d+))"), in getLocation()
186 std::regex( in getLocation()
188 std::regex(R"(.*\n>>> defined in .*\n>>> referenced by (\S+):(\d+))"), in getLocation()
189 std::regex(R"((\S+):(\d+): unclosed quote)"), in getLocation()
193 for (std::regex &re : regexes) { in getLocation()
257 static std::regex re(R"(^(duplicate symbol: .*))" in error()