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

  /external/deqp/framework/common/
tcuDefs.cpp 88 TestError::TestError (const char* message, const char* expr, const char* file, int line)
93 TestError::TestError (const std::string& message)
tcuDefs.hpp 77 class TestError : public TestException
80 TestError (const char* message, const char* expr, const char* file, int line);
81 TestError (const std::string& message);
82 virtual ~TestError (void) throw() {}
128 //! Throw TestError.
129 #define TCU_FAIL(MSG) TCU_THROW(TestError, MSG)
131 //! Throw TestError if condition X is not satisfied.
132 #define TCU_CHECK(X) do { if (!(!deGetFalse() && (X))) throw tcu::TestError(DE_NULL, #X, __FILE__, __LINE__); } while(deGetFalse())
134 //! Throw TestError if condition X is not satisfied.
135 #define TCU_CHECK_MSG(X, MSG) do { if (!(!deGetFalse() && (X))) throw tcu::TestError((MSG), #X, __FILE__, __LINE__); } while(deGetFalse()
    [all...]
  /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 146 milliseconds