/external/replicaisland/src/com/replica/replicaisland/ |
D | GLErrorLogger.java | 45 public void checkError() { in checkError() method in GLErrorLogger.ErrorLoggingGL 58 checkError(); in glActiveTexture() 63 checkError(); in glAlphaFunc() 68 checkError(); in glAlphaFuncx() 73 checkError(); in glBindTexture() 78 checkError(); in glBlendFunc() 83 checkError(); in glClear() 88 checkError(); in glClearColor() 93 checkError(); in glClearColorx() 98 checkError(); in glClearDepthf() [all …]
|
/external/deqp/external/openglcts/modules/glesext/texture_cube_map_array/ |
D | esextcTextureCubeMapArrayTex3DValidation.cpp | 93 if (!checkError(GL_NO_ERROR, "glTexImage3D() call failed when called with valid arguments - ")) in iterate() 102 if (!checkError(GL_NO_ERROR, "glTexStorage3D() call failed when called with valid arguments - ")) in iterate() 119 …if (!checkError(GL_INVALID_VALUE, "glTexImage3D() call generated an invalid error code when width … in iterate() 128 if (!checkError(GL_INVALID_VALUE, "glTexStorage3D() call generated an invalid error code " in iterate() 145 if (!checkError(GL_INVALID_VALUE, "glTexImage3D() call generated an invalid error code" in iterate() 158 if (!checkError(GL_INVALID_VALUE, "glTexStorage3D() call generated an invalid error " in iterate() 175 …if (!checkError(GL_INVALID_OPERATION, "glTexStorage3D() call generated an invalid error code when … in iterate() 204 bool TextureCubeMapArrayTex3DValidation::checkError(glw::GLint expectedError, const char* message) in checkError() function in glcts::TextureCubeMapArrayTex3DValidation
|
D | esextcTextureCubeMapArrayTex3DValidation.hpp | 71 bool checkError(glw::GLint expectedError, const char* message);
|
/external/deqp/framework/egl/ |
D | egluDefs.hpp | 28 #define EGLU_CHECK(EGLW) eglu::checkError((EGLW).getError(), DE_NULL, __FILE__, __LINE__) 29 #define EGLU_CHECK_MSG(EGLW, MSG) eglu::checkError((EGLW).getError(), MSG, __FILE__, __LINE__) 30 #define EGLU_CHECK_CALL(EGLW, CALL) do { (EGLW).CALL; eglu::checkError((EGLW).getError(), #CALL, … 31 #define EGLU_CHECK_CALL_FPTR(EGLW, CALL) do { CALL; eglu::checkError((EGLW).getError(), #CALL, __FI… 60 void checkError (deUint32 err, const char* msg, const char* file, int line);
|
/external/deqp/modules/gles2/functional/ |
D | es2fFboApiTest.cpp | 64 static void checkError (tcu::TestContext& testCtx, sglr::Context& ctx, GLenum expect) in checkError() function 171 checkError(testCtx, context, levels[ndx] == 0 ? GL_NO_ERROR : GL_INVALID_VALUE); in textureLevelsTest() 191 checkError(testCtx, context, de::inBounds(levels[ndx], 0, 16) ? GL_NO_ERROR : GL_INVALID_VALUE); in textureLevelsWithRenderToMipmapTest() 211 checkError(testCtx, context, GL_NO_ERROR); in validTex2DAttachmentsTest() 243 checkError(testCtx, context, GL_NO_ERROR); in validTexCubeAttachmentsTest() 265 checkError(testCtx, context, GL_NO_ERROR); in validRboAttachmentsTest() 276 checkError(testCtx, context, GL_INVALID_OPERATION); in attachToDefaultFramebufferTest() 283 checkError(testCtx, context, GL_INVALID_OPERATION); in attachToDefaultFramebufferTest() 295 checkError(testCtx, context, GL_INVALID_OPERATION); in invalidTex2DAttachmentTest() 300 checkError(testCtx, context, GL_INVALID_OPERATION); in invalidTex2DAttachmentTest() [all …]
|
/external/deqp/modules/gles3/functional/ |
D | es3fFboApiTests.cpp | 59 static void checkError (tcu::TestContext& testCtx, sglr::Context& ctx, GLenum expect) in checkError() function 166 …checkError(testCtx, context, levels[ndx] >= 0 && levels[ndx] <= log2MaxTexSize ? GL_NO_ERROR : GL_… in textureLevelsTest() 186 checkError(testCtx, context, GL_NO_ERROR); in validTex2DAttachmentsTest() 218 checkError(testCtx, context, GL_NO_ERROR); in validTexCubeAttachmentsTest() 240 checkError(testCtx, context, GL_NO_ERROR); in validRboAttachmentsTest() 251 checkError(testCtx, context, GL_INVALID_OPERATION); in attachToDefaultFramebufferTest() 258 checkError(testCtx, context, GL_INVALID_OPERATION); in attachToDefaultFramebufferTest() 270 checkError(testCtx, context, GL_INVALID_OPERATION); in invalidTex2DAttachmentTest() 275 checkError(testCtx, context, GL_INVALID_OPERATION); in invalidTex2DAttachmentTest() 286 checkError(testCtx, context, GL_INVALID_OPERATION); in invalidTexCubeAttachmentTest() [all …]
|
D | es3fFboColorbufferTests.cpp | 131 checkError(); in render() 135 checkError(); in render() 196 checkError(); in render() 270 checkError(); in render() 395 checkError(); in render() 404 checkError(); in render() 444 checkError(); in render() 461 checkError(); in render() 531 checkError(); in render() 570 checkError(); in render() [all …]
|
D | es3fFboDepthbufferTests.cpp | 97 checkError(); in render() 189 checkError(); in render() 275 checkError(); in render()
|
D | es3fFramebufferBlitTests.cpp | 102 checkError(); in render() 391 checkError(); in render() 418 checkError(); in render() 528 checkError(); in render() 658 checkError(); in render() 787 checkError(); in render() 828 checkError(); in render() 840 checkError(); in render() 851 checkError(); in render()
|
/external/python/cpython3/Lib/test/ |
D | test_regrtest.py | 44 def checkError(self, args, msg): member in ParseArgsTestCase 60 self.checkError(['--timeout'], 'expected one argument') 61 self.checkError(['--timeout', 'foo'], 'invalid float value') 70 self.checkError(['--worker-args'], 'expected one argument') 77 self.checkError([opt], 'expected one argument') 133 self.checkError(['--randseed'], 'expected one argument') 134 self.checkError(['--randseed', 'foo'], 'invalid int value') 141 self.checkError([opt], 'expected one argument') 142 self.checkError([opt, 'foo', '-s'], "don't go together") 155 self.checkError([opt, '-f', 'foo'], "don't go together") [all …]
|
/external/deqp/modules/glshared/ |
D | glsStateQueryUtil.cpp | 43 static bool checkError (tcu::ResultCollector& result, glu::CallLogWrapper& gl, const char* msg) in checkError() function 279 if (!checkError(result, gl, "glIsEnabled")) in queryState() 294 if (!checkError(result, gl, "glGetBooleanv")) in queryState() 311 if (!checkError(result, gl, "glGetIntegerv")) in queryState() 326 if (!checkError(result, gl, "glGetInteger64v")) in queryState() 341 if (!checkError(result, gl, "glGetFloatv")) in queryState() 366 if (!checkError(result, gl, "glGetBooleani_v")) in queryIndexedState() 392 if (!checkError(result, gl, "glGetIntegeri_v")) in queryIndexedState() 407 if (!checkError(result, gl, "glGetInteger64i_v")) in queryIndexedState() 421 if (!checkError(result, gl, "glIsEnabledi")) in queryIndexedState() [all …]
|
/external/deqp/framework/opengl/ |
D | gluDefs.cpp | 65 void checkError (const RenderContext& context, const char* msg, const char* file, int line) in checkError() function 67 checkError(context.getFunctions().getError(), msg, file, line); in checkError() 70 void checkError (deUint32 err, const char* msg, const char* file, int line) in checkError() function
|
D | gluDefs.hpp | 29 #define GLU_EXPECT_NO_ERROR(ERR, MSG) glu::checkError((ERR), MSG, __FILE__, __LINE__) 74 void checkError (deUint32 err, const char* msg, const char* file, int line); 75 void checkError (const RenderContext& context, const char* msg, const char* file, int line);
|
/external/llvm-project/lld/wasm/ |
D | LTO.cpp | 66 checkError(c.addSaveTemps(config->outputFile.str() + ".", in createLTO() 117 checkError(ltoObj->add(std::move(f.obj), resols)); in add() 138 checkError(ltoObj->run( in compile()
|
/external/antlr/tool/src/test/java/org/antlr/test/ |
D | TestAttributes.java | 442 checkError(equeue, expectedMessage); in testInvalidArguments() 609 checkError(equeue, expectedMessage); in testInvalidReturnValues() 758 checkError(equeue, expectedMessage); in testInvalidRuleLabelAccessesParameter() 787 checkError(equeue, expectedMessage); in testInvalidRuleLabelAccessesScopeAttribute() 815 checkError(equeue, expectedMessage); in testInvalidRuleAttribute() 843 checkError(equeue, expectedMessage); in testMissingRuleAttribute() 869 checkError(equeue, expectedMessage); in testMissingUnlabeledRuleAttribute() 893 checkError(equeue, expectedMessage); in testNonDynamicAttributeOutsideRule() 919 checkError(equeue, expectedMessage); in testNonDynamicAttributeOutsideRule2() 974 checkError(equeue, expectedMessage); in testUnknownGlobalScope() [all …]
|
D | TestTemplates.java | 316 checkError(equeue, expectedMessage); in testCannotHaveSpaceBeforeDot() 344 checkError(equeue, expectedMessage); in testCannotHaveSpaceAfterDot() 347 protected void checkError(ErrorQueue equeue, in checkError() method in TestTemplates
|
D | TestRewriteAST.java | 1182 checkError(equeue, expectedMessage); in testUnknownRule() 1211 checkError(equeue, expectedMessage); in testKnownRuleButNotInLHS() 1239 checkError(equeue, expectedMessage); in testUnknownToken() 1267 checkError(equeue, expectedMessage); in testUnknownLabel() 1295 checkError(equeue, expectedMessage); in testUnknownCharLiteralToken() 1323 checkError(equeue, expectedMessage); in testUnknownStringLiteralToken()
|
/external/llvm-project/lld/MachO/ |
D | LTO.cpp | 55 checkError(ltoObj->add(std::move(f.obj), resols)); in add() 64 checkError(ltoObj->run([&](size_t task) { in compile()
|
/external/llvm-project/lld/COFF/ |
D | LTO.cpp | 89 checkError(c.addSaveTemps(std::string(config->outputFile) + ".", in createConfig() 150 checkError(ltoObj->add(std::move(f.obj), resols)); in add() 170 checkError(ltoObj->run( in compile()
|
/external/deqp/modules/gles31/functional/ |
D | es31fDrawTests.cpp | 924 glu::checkError(ctx.getError(), "", __FILE__, __LINE__); in renderTo() 938 glu::checkError(ctx.getError(), "", __FILE__, __LINE__); in renderTo() 1399 glu::checkError(gl.getError(), "create draw command", __FILE__, __LINE__); in createDrawCommand() 1467 glu::checkError(gl.getError(), "", __FILE__, __LINE__); in createDrawData() 1494 glu::checkError(gl.getError(), "", __FILE__, __LINE__); in createDrawIndices() 1546 glu::checkError(gl.getError(), "", __FILE__, __LINE__); in renderTo() 1549 glu::checkError(gl.getError(), "", __FILE__, __LINE__); in renderTo() 1552 glu::checkError(gl.getError(), "", __FILE__, __LINE__); in renderTo() 1642 glu::checkError(gl.getError(), "use compute shader", __FILE__, __LINE__); in runComputeShader() 1682 glu::checkError(gl.getError(), "setup buffers", __FILE__, __LINE__); in runComputeShader() [all …]
|
D | es31fFboColorbufferTests.cpp | 161 checkError(); in render() 191 checkError(); in render() 274 checkError(); in render() 315 checkError(); in render() 335 checkError(); in render()
|
D | es31fFboTestCase.hpp | 62 void checkError (void);
|
/external/deqp/modules/gles31/stress/ |
D | es31sDrawTests.cpp | 191 glu::checkError(gl.glGetError(), "gen vao", __FILE__, __LINE__); in iterate() 205 glu::checkError(gl.glGetError(), "", __FILE__, __LINE__); in iterate() 218 glu::checkError(gl.glGetError(), "", __FILE__, __LINE__); in iterate() 231 glu::checkError(gl.glGetError(), "", __FILE__, __LINE__); in iterate() 255 glu::checkError(gl.glGetError(), "", __FILE__, __LINE__); in iterate() 279 glu::checkError(gl.glGetError(), "", __FILE__, __LINE__); in iterate()
|
/external/llvm-project/llvm/unittests/DebugInfo/GSYM/ |
D | GSYMTest.cpp | 35 void checkError(ArrayRef<std::string> ExpectedMsgs, Error Err) { in checkError() function 49 void checkError(std::string ExpectedMsg, Error Err) { in checkError() function 50 checkError(ArrayRef<std::string>{ExpectedMsg}, std::move(Err)); in checkError() 175 checkError(ExpectedErrorMsg, Decoded.takeError()); in TestFunctionInfoDecodeError() 217 checkError(ExpectedErrorMsg, ExpectedOffset.takeError()); in TestFunctionInfoEncodeError() 349 checkError(ExpectedErrorMsg, Decoded.takeError()); in TestInlineInfoDecodeError() 360 checkError(ExpectedErrorMsg, std::move(Err)); in TestInlineInfoEncodeError() 887 checkError(ExpectedErrorMsg, Decoded.takeError()); in TestLineTableDecodeError() 934 checkError("attempted to encode invalid LineTable object", in TEST() 943 checkError("LineEntry has address 0x1000 which is less than the function " in TEST() [all …]
|
/external/deqp/modules/egl/ |
D | teglQueryConfigTests.cpp | 118 eglu::checkError(eglGetError(), DE_NULL, __FILE__, __LINE__); in checkGetConfigsBounds() 253 eglu::checkError(eglGetError(), DE_NULL, __FILE__, __LINE__); in iterate() 275 eglu::checkError(eglGetError(), DE_NULL, __FILE__, __LINE__); in getValue() 414 eglu::checkError(eglGetError(), DE_NULL, __FILE__, __LINE__); in executeTest()
|