Searched refs:stringToFind (Results 1 – 7 of 7) sorted by relevance
/external/angle/src/tests/test_utils/ |
D | compiler_test.h | 57 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;
|
D | compiler_test.cpp | 192 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/ |
D | AVCaptureSession+DevicePosition.mm | 13 BOOL CFStringContainsString(CFStringRef theString, CFStringRef stringToFind) { 15 stringToFind,
|
/external/angle/src/tests/compiler_tests/ |
D | TypeTracking_test.cpp | 51 bool foundInIntermediateTree(const char *stringToFind) const in foundInIntermediateTree() 53 return mInfoLog.find(stringToFind) != std::string::npos; in foundInIntermediateTree()
|
D | OVR_multiview_test.cpp | 147 bool foundInHLSLCode(const char *stringToFind) const in foundInHLSLCode() 150 return foundInCode(SH_HLSL_4_1_OUTPUT, stringToFind); in foundInHLSLCode()
|
D | OVR_multiview2_test.cpp | 150 bool foundInHLSLCode(const char *stringToFind) const in foundInHLSLCode() 153 return foundInCode(SH_HLSL_4_1_OUTPUT, stringToFind); in foundInHLSLCode()
|
D | Parse_test.cpp | 56 bool foundInIntermediateTree(const char *stringToFind) const in foundInIntermediateTree() 58 return mInfoLog.find(stringToFind) != std::string::npos; in foundInIntermediateTree()
|