HomeSort by relevance Sort by last modified time
    Searched defs:TestError (Results 1 - 4 of 4) sorted by null

  /external/deqp/framework/common/
tcuDefs.hpp 61 class TestError : public Exception
64 TestError (const char* message, const char* expr, const char* file, int line);
65 TestError (const std::string& message);
66 virtual ~TestError (void) throw() {}
110 //! Throw TestError.
111 #define TCU_FAIL(MSG) TCU_THROW(TestError, MSG)
113 //! Throw TestError if condition X is not satisfied.
114 #define TCU_CHECK(X) do { if (!(!deGetFalse() && (X))) throw tcu::TestError(DE_NULL, #X, __FILE__, __LINE__); } while(deGetFalse())
116 //! Throw TestError if condition X is not satisfied.
117 #define TCU_CHECK_MSG(X, MSG) do { if (!(!deGetFalse() && (X))) throw tcu::TestError((MSG), #X, __FILE__, __LINE__); } while(deGetFalse()
    [all...]
tcuDefs.cpp 76 TestError::TestError (const char* message, const char* expr, const char* file, int line)
81 TestError::TestError (const std::string& message)
  /external/antlr/antlr-3.4/runtime/Python/
setup.py 56 class TestError(DistutilsError):
145 raise TestError(
277 raise TestError(
  /external/chromium_org/third_party/webrtc/video_engine/test/auto_test/interface/
vie_autotest_defines.h 154 static int TestError(bool expr, const char* fmt, ...) {

Completed in 209 milliseconds