Lines Matching refs:file
8 * you may not use this file except in compliance with the License.
20 * \file
35 Error::Error (int error, const char* message, const char* expr, const char* file, int line)
36 : tcu::TestError (message, expr, file, line)
51 OutOfMemoryError::OutOfMemoryError (const char* message, const char* expr, const char* file, int line)
52 : tcu::ResourceError(message, expr, file, line)
65 void checkError (const RenderContext& context, const char* msg, const char* file, int line)
67 checkError(context.getFunctions().getError(), msg, file, line);
70 void checkError (deUint32 err, const char* msg, const char* file, int line)
81 throw OutOfMemoryError(msgStr.str().c_str(), DE_NULL, file, line);
83 throw Error(err, msgStr.str().c_str(), DE_NULL, file, line);