Lines Matching defs:file
8 * you may not use this file except in compliance with the License.
20 * \file
43 Error::Error (VkResult error, const char* message, const char* expr, const char* file, int line)
44 : tcu::TestError (message, expr, file, line)
59 NotSupportedError::NotSupportedError (VkResult error, const char* message, const char* expr, const char* file, int line)
60 : tcu::NotSupportedError (message, expr, file, line)
75 OutOfMemoryError::OutOfMemoryError (VkResult error, const char* message, const char* expr, const char* file, int line)
76 : tcu::ResourceError(message, expr, file, line)
94 static void checkResult (VkResult result, const char* msg, const char* file, int line)
105 throw OutOfMemoryError(result, msgStr.str().c_str(), DE_NULL, file, line);
107 throw ERROR(result, msgStr.str().c_str(), DE_NULL, file, line);
111 void checkResult (VkResult result, const char* msg, const char* file, int line)
113 checkResult<Error>(result, msg, file, line);
116 void checkResultSupported (VkResult result, const char* msg, const char* file, int line)
118 checkResult<NotSupportedError>(result, msg, file, line);
121 void checkWsiResult (VkResult result, const char* msg, const char* file, int line)
130 checkResult(result, msg, file, line);