Home
last modified time | relevance | path

Searched refs:stringToFind (Results 1 – 7 of 7) sorted by relevance

/external/angle/src/tests/test_utils/
Dcompiler_test.h57 bool foundInESSLCode(const char *stringToFind) const in foundInESSLCode() argument
59 return foundInCode(SH_ESSL_OUTPUT, stringToFind); in foundInESSLCode()
62 bool foundInGLSLCode(const char *stringToFind) const in foundInGLSLCode() argument
64 return foundInCode(SH_GLSL_COMPATIBILITY_OUTPUT, stringToFind); in foundInGLSLCode()
67 bool foundInCode(ShShaderOutput output, const char *stringToFind) const;
77 const char *stringToFind,
81 bool foundInCode(const char *stringToFind) const;
85 bool foundInCode(const char *stringToFind, const int expectedOccurrences) const;
91 bool notFoundInCode(const char *stringToFind) const;
Dcompiler_test.cpp192 bool MatchOutputCodeTest::foundInCode(ShShaderOutput output, const char *stringToFind) const in foundInCode()
207 return code->second.find(stringToFind) != std::string::npos; in foundInCode()
227 for (const char *stringToFind : stringsToFind) in foundInCodeInOrder() local
229 auto position = code->second.find(stringToFind, currentPos); in foundInCodeInOrder()
234 currentPos = position + strlen(stringToFind); in foundInCodeInOrder()
240 const char *stringToFind, in foundInCode() argument
259 const size_t searchStringLength = strlen(stringToFind); in foundInCode()
263 auto position = code->second.find(stringToFind, currentPos); in foundInCode()
272 return code->second.find(stringToFind, currentPos) == std::string::npos; in foundInCode()
275 bool MatchOutputCodeTest::foundInCode(const char *stringToFind) const in foundInCode()
[all …]
/external/webrtc/sdk/objc/helpers/
DAVCaptureSession+DevicePosition.mm13 BOOL CFStringContainsString(CFStringRef theString, CFStringRef stringToFind) {
15 stringToFind,
/external/angle/src/tests/compiler_tests/
DTypeTracking_test.cpp51 bool foundInIntermediateTree(const char *stringToFind) const in foundInIntermediateTree()
53 return mInfoLog.find(stringToFind) != std::string::npos; in foundInIntermediateTree()
DOVR_multiview_test.cpp147 bool foundInHLSLCode(const char *stringToFind) const in foundInHLSLCode()
150 return foundInCode(SH_HLSL_4_1_OUTPUT, stringToFind); in foundInHLSLCode()
DOVR_multiview2_test.cpp150 bool foundInHLSLCode(const char *stringToFind) const in foundInHLSLCode()
153 return foundInCode(SH_HLSL_4_1_OUTPUT, stringToFind); in foundInHLSLCode()
DParse_test.cpp56 bool foundInIntermediateTree(const char *stringToFind) const in foundInIntermediateTree()
58 return mInfoLog.find(stringToFind) != std::string::npos; in foundInIntermediateTree()