Home
last modified time | relevance | path

Searched refs:regexToFind (Results 1 – 3 of 3) sorted by relevance

/external/angle/src/tests/test_utils/
Dcompiler_test.cpp160 const std::regex &regexToFind, in foundInCodeRegex() argument
178 return std::regex_search(code->second, *match, regexToFind); in foundInCodeRegex()
182 return std::regex_search(code->second, regexToFind); in foundInCodeRegex()
281 bool MatchOutputCodeTest::foundInCodeRegex(const std::regex &regexToFind, std::smatch *match) const in foundInCodeRegex() argument
285 if (!foundInCodeRegex(code.first, regexToFind, match)) in foundInCodeRegex()
Dcompiler_test.h70 const std::regex &regexToFind,
83 bool foundInCodeRegex(const std::regex &regexToFind, std::smatch *match = nullptr) const;
/external/angle/src/tests/compiler_tests/
DDebugShaderPrecision_test.cpp44 bool foundInHLSLCodeRegex(const char *regexToFind) const in foundInHLSLCodeRegex()
47 return foundInCodeRegex(SH_HLSL_4_1_OUTPUT, std::regex(regexToFind)); in foundInHLSLCodeRegex()