| /third_party/python/Lib/xml/sax/ |
| D | __init__.py | 29 def parse(source, handler, errorHandler=ErrorHandler()): argument 32 parser.setErrorHandler(errorHandler) 35 def parseString(string, handler, errorHandler=ErrorHandler()): argument 37 if errorHandler is None: 38 errorHandler = ErrorHandler() 41 parser.setErrorHandler(errorHandler)
|
| /third_party/node/deps/npm/bin/ |
| D | npm-cli.js | 30 var errorHandler = require('../lib/utils/error-handler.js') 54 return errorHandler.exit(0) 66 process.on('uncaughtException', errorHandler) 67 process.on('unhandledRejection', errorHandler) 80 if (er) return errorHandler(er) 152 errorHandler.apply(this, arguments)
|
| /third_party/skia/src/gpu/gl/builders/ |
| D | GrGLProgramBuilder.cpp | 232 auto errorHandler = this->gpu()->getContext()->priv().getShaderErrorHandler(); in finalize() local 284 cached = this->checkLinkStatus(programID, errorHandler, nullptr, nullptr); in finalize() 337 errorHandler); in finalize() 347 GR_GL_FRAGMENT_SHADER, &shadersToDelete, errorHandler)) { in finalize() 362 errorHandler); in finalize() 369 GR_GL_VERTEX_SHADER, &shadersToDelete, errorHandler)) { in finalize() 397 errorHandler)) { in finalize() 409 errorHandler)) { in finalize() 421 if (!this->checkLinkStatus(programID, errorHandler, sksl, glsl)) { in finalize() 468 GrContextOptions::ShaderErrorHandler* errorHandler, in checkLinkStatus() argument [all …]
|
| D | GrGLShaderStringBuilder.cpp | 26 GrContextOptions::ShaderErrorHandler* errorHandler) { in GrSkSLtoGLSL() argument 36 errorHandler->compileError(src.c_str(), compiler->errorText().c_str()); in GrSkSLtoGLSL() 60 GrContextOptions::ShaderErrorHandler* errorHandler) { in GrGLCompileAndAttachShader() argument 94 errorHandler->compileError(glsl.c_str(), infoLen > 0 ? (const char*)log.get() : ""); in GrGLCompileAndAttachShader()
|
| D | GrGLShaderStringBuilder.h | 22 GrContextOptions::ShaderErrorHandler* errorHandler); 29 GrContextOptions::ShaderErrorHandler* errorHandler);
|
| D | GrGLProgramBuilder.h | 68 GrContextOptions::ShaderErrorHandler* errorHandler); 78 bool checkLinkStatus(GrGLuint programID, GrContextOptions::ShaderErrorHandler* errorHandler,
|
| /third_party/python/Lib/xml/dom/ |
| D | xmlbuilder.py | 40 errorHandler = None variable in Options 46 errorHandler = None variable in DOMBuilder 66 return self.errorHandler 67 def _set_errorHandler(self, errorHandler): argument 68 self.errorHandler = errorHandler 190 options.errorHandler = self.errorHandler
|
| /third_party/flutter/skia/src/gpu/gl/builders/ |
| D | GrGLProgramBuilder.cpp | 200 auto errorHandler = this->gpu()->getContext()->priv().getShaderErrorHandler(); in finalize() local 241 cached = this->checkLinkStatus(programID, errorHandler, nullptr, nullptr); in finalize() 286 errorHandler); in finalize() 299 GR_GL_FRAGMENT_SHADER, &shadersToDelete, errorHandler)) { in finalize() 311 errorHandler); in finalize() 318 GR_GL_VERTEX_SHADER, &shadersToDelete, errorHandler)) { in finalize() 338 errorHandler); in finalize() 346 errorHandler)) { in finalize() 355 if (!this->checkLinkStatus(programID, errorHandler, sksl, glsl)) { in finalize() 411 GrContextOptions::ShaderErrorHandler* errorHandler, in checkLinkStatus() argument [all …]
|
| D | GrGLShaderStringBuilder.cpp | 36 GrContextOptions::ShaderErrorHandler* errorHandler) { in GrSkSLtoGLSL() argument 46 errorHandler->compileError(src.c_str(), compiler->errorText().c_str()); in GrSkSLtoGLSL() 68 GrContextOptions::ShaderErrorHandler* errorHandler) { in GrGLCompileAndAttachShader() argument 103 errorHandler->compileError(glsl.c_str(), infoLen > 0 ? (const char*)log.get() : ""); in GrGLCompileAndAttachShader()
|
| D | GrGLShaderStringBuilder.h | 23 GrContextOptions::ShaderErrorHandler* errorHandler); 30 GrContextOptions::ShaderErrorHandler* errorHandler);
|
| D | GrGLProgramBuilder.h | 59 GrContextOptions::ShaderErrorHandler* errorHandler); 67 bool checkLinkStatus(GrGLuint programID, GrContextOptions::ShaderErrorHandler* errorHandler,
|
| /third_party/node/test/parallel/ |
| D | test-child-process-pipe-dataflow.js | 50 const errorHandler = (thing, type) => { function 55 child.stderr.on('data', (d) => { errorHandler(d, 'data'); }); 56 child.on('error', (err) => { errorHandler(err, 'error'); });
|
| D | test-tls-alert-handling.js | 33 const errorHandler = common.mustCall((err) => { constant 44 s.on('error', errorHandler);
|
| D | test-domain-no-error-handler-abort-on-uncaught-7.js | 10 d.on('error', function errorHandler() { function
|
| D | test-domain-no-error-handler-abort-on-uncaught-6.js | 10 d.on('error', function errorHandler() { function
|
| D | test-domain-no-error-handler-abort-on-uncaught-8.js | 10 d.on('error', function errorHandler() { function
|
| /third_party/skia/src/gpu/mtl/ |
| D | GrMtlPipelineStateBuilder.mm | 92 GrContextOptions::ShaderErrorHandler* errorHandler) { 93 id<MTLLibrary> shaderLibrary = GrCompileMtlShaderLibrary(fGpu, shader, errorHandler); 562 auto errorHandler = fGpu->getContext()->priv().getShaderErrorHandler(); 585 errorHandler); 592 errorHandler); 616 errorHandler); 625 errorHandler); 652 errorHandler); 656 errorHandler); 745 auto errorHandler = gpu->getContext()->priv().getShaderErrorHandler(); [all …]
|
| D | GrMtlUtil.h | 77 GrContextOptions::ShaderErrorHandler* errorHandler); 84 GrContextOptions::ShaderErrorHandler* errorHandler);
|
| /third_party/skia/src/gpu/vk/ |
| D | GrVkUtil.cpp | 95 auto errorHandler = gpu->getContext()->priv().getShaderErrorHandler(); in GrCompileVkShaderModule() local 99 errorHandler->compileError(shaderString.c_str(), in GrCompileVkShaderModule() 105 errorHandler->compileError(shaderString.c_str(), in GrCompileVkShaderModule()
|
| /third_party/node/tools/ |
| D | find-inactive-collaborators.mjs | 22 const errorHandler = new Promise( 26 await Promise.race([errorHandler, Promise.resolve()]); 30 await Promise.race([errorHandler, Promise.resolve()]); 40 return Promise.race([errorHandler, Promise.resolve(returnValue)]);
|
| /third_party/flutter/skia/src/gpu/vk/ |
| D | GrVkUtil.cpp | 132 auto errorHandler = gpu->getContext()->priv().getShaderErrorHandler(); in GrCompileVkShaderModule() local 136 errorHandler->compileError(shaderString.c_str(), in GrCompileVkShaderModule() 142 errorHandler->compileError(shaderString.c_str(), in GrCompileVkShaderModule()
|
| /third_party/node/deps/npm/lib/utils/ |
| D | error-handler.js | 2 module.exports = errorHandler 111 errorHandler(er) 144 function errorHandler (er) { function
|
| /third_party/glslang/SPIRV/ |
| D | SPVRemapper.h | 128 static void registerErrorHandler(errorfn_t handler) { errorHandler = handler; } in registerErrorHandler() 171 void error(const std::string& txt) const { errorLatch = true; errorHandler(txt); } in error() 297 static errorfn_t errorHandler; variable
|
| /third_party/node/lib/ |
| D | events.js | 964 eventTargetAgnosticRemoveListener(emitter, 'error', errorHandler); 990 eventTargetAgnosticRemoveListener(emitter, 'error', errorHandler); 1000 addErrorHandlerIfEventEmitter(emitter, errorHandler); 1014 errorHandler(lazyDOMException('The operation was aborted', 'AbortError')); 1026 function errorHandler(err) { function
|
| /third_party/libxml2/ |
| D | check-xinclude-test-suite.py | 30 def errorHandler(ctx, str): function 42 libxml2.registerErrorHandler(errorHandler, None)
|