Home
last modified time | relevance | path

Searched refs:msgStr (Results 1 – 4 of 4) sorted by relevance

/external/deqp/framework/opengl/
DgluDefs.cpp74 std::ostringstream msgStr; in checkError() local
76 msgStr << msg << ": "; in checkError()
78 msgStr << "glGetError() returned " << getErrorStr(err); in checkError()
81 throw OutOfMemoryError(msgStr.str().c_str(), DE_NULL, file, line); in checkError()
83 throw Error(err, msgStr.str().c_str(), DE_NULL, file, line); in checkError()
/external/deqp/external/vulkancts/framework/vulkan/
DvkDefs.cpp81 std::ostringstream msgStr; in checkResult() local
83 msgStr << msg << ": "; in checkResult()
85 msgStr << getResultStr(result); in checkResult()
88 throw OutOfMemoryError(result, msgStr.str().c_str(), DE_NULL, file, line); in checkResult()
90 throw Error(result, msgStr.str().c_str(), DE_NULL, file, line); in checkResult()
/external/deqp/external/openglcts/modules/gles31/
Des31cFramebufferNoAttachmentsTests.cpp44 std::ostringstream msgStr; in checkErrorEqualsExpected() local
45msgStr << "glGetError() returned " << glu::getErrorStr(err) << ", expected " << glu::getErrorStr(e… in checkErrorEqualsExpected()
48 msgStr << " in '" << msg << "'"; in checkErrorEqualsExpected()
51 throw glu::OutOfMemoryError(msgStr.str().c_str(), "", file, line); in checkErrorEqualsExpected()
53 throw glu::Error(err, msgStr.str().c_str(), "", file, line); in checkErrorEqualsExpected()
120 std::ostringstream msgStr; in expect_fbo_status() local
121 msgStr << "Error before glCheckFramebufferStatus() for '" << fail_message << "'\n"; in expect_fbo_status()
131 std::ostringstream msgStr; in expect_fbo_status() local
132 msgStr << "Error after glCheckFramebufferStatus() for '" << fail_message << "'\n"; in expect_fbo_status()
/external/deqp/framework/common/
DtcuTestLog.cpp195 void TestLog::writeMessage (const char* msgStr) in writeMessage() argument
197 if (qpTestLog_writeText(m_log, DE_NULL, DE_NULL, QP_KEY_TAG_LAST, msgStr) == DE_FALSE) in writeMessage()