| /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/skia/src/gpu/gl/builders/ |
| D | GrGLProgramBuilder.cpp | 257 auto errorHandler = this->gpu()->getContext()->priv().getShaderErrorHandler(); in finalize() local 309 cached = this->checkLinkStatus(programID, errorHandler, nullptr, nullptr); in finalize() 362 errorHandler); in finalize() 379 GR_GL_FRAGMENT_SHADER, &shadersToDelete, errorHandler)) { in finalize() 394 errorHandler); in finalize() 401 GR_GL_VERTEX_SHADER, &shadersToDelete, errorHandler)) { in finalize() 429 errorHandler)) { in finalize() 441 errorHandler)) { in finalize() 453 if (!this->checkLinkStatus(programID, errorHandler, sksl, glsl)) { in finalize() 500 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/node/deps/npm/test/lib/commands/ |
| D | completion.js | 72 let errorHandler, data variable 76 errorHandler = handler 83 errorHandler({ errno: 'EPIPE' }) 95 let errorHandler, data variable 100 errorHandler = handler 107 errorHandler({ errno: 'EPIPE' })
|
| /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/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
|
| D | test-domain-no-error-handler-abort-on-uncaught-9.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);
|
| D | GrMtlPipelineStateBuilder.h | 66 GrContextOptions::ShaderErrorHandler* errorHandler);
|
| D | GrMtlUtil.mm | 66 GrContextOptions::ShaderErrorHandler* errorHandler) { 78 errorHandler->compileError(src.c_str(), compiler->errorText().c_str()); 100 GrContextOptions::ShaderErrorHandler* errorHandler) { 130 errorHandler->compileError(msl.c_str(), error.debugDescription.UTF8String);
|
| /third_party/node/test/fixtures/test-runner/output/ |
| D | describe_it.js | 353 return (_, errorHandler) => errorHandler(new Error('custom error')); 374 return (_, errorHandler) => errorHandler(new Error('custom error'));
|
| D | output.js | 370 return (_, errorHandler) => errorHandler('custom error');
|
| /third_party/skia/src/gpu/vk/ |
| D | GrVkUtil.cpp | 102 auto errorHandler = gpu->getContext()->priv().getShaderErrorHandler(); in GrCompileVkShaderModule() local 106 errorHandler->compileError(shaderString.c_str(), in GrCompileVkShaderModule() 112 errorHandler->compileError(shaderString.c_str(), in GrCompileVkShaderModule()
|
| /third_party/node/tools/ |
| D | find-inactive-collaborators.mjs | 29 const errorHandler = new Promise( 33 await Promise.race([errorHandler, Promise.resolve()]); 37 await Promise.race([errorHandler, Promise.resolve()]); 47 return Promise.race([errorHandler, Promise.resolve(returnValue)]);
|
| D | find-inactive-tsc.mjs | 31 const errorHandler = new Promise( 35 await Promise.race([errorHandler, Promise.resolve()]); 39 await Promise.race([errorHandler, Promise.resolve()]); 46 return Promise.race([errorHandler, Promise.resolve(returnValue)]);
|
| /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 | 1088 eventTargetAgnosticRemoveListener(emitter, 'error', errorHandler); 1114 eventTargetAgnosticRemoveListener(emitter, 'error', errorHandler); 1124 emitter.on('error', errorHandler); 1137 errorHandler(new AbortError(undefined, { cause: signal?.reason })); 1149 function errorHandler(err) { function
|
| /third_party/python/Objects/ |
| D | unicodeobject.c | 357 PyObject **errorHandler,const char *encoding, const char *reason, 4461 const char *errors, PyObject **errorHandler, in unicode_decode_call_errorhandler_wchar() argument 4478 if (*errorHandler == NULL) { in unicode_decode_call_errorhandler_wchar() 4479 *errorHandler = PyCodec_LookupError(errors); in unicode_decode_call_errorhandler_wchar() 4480 if (*errorHandler == NULL) in unicode_decode_call_errorhandler_wchar() 4492 restuple = PyObject_CallOneArg(*errorHandler, *exceptionObject); in unicode_decode_call_errorhandler_wchar() 4574 const char *errors, PyObject **errorHandler, in unicode_decode_call_errorhandler_writer() argument 4592 if (*errorHandler == NULL) { in unicode_decode_call_errorhandler_writer() 4593 *errorHandler = PyCodec_LookupError(errors); in unicode_decode_call_errorhandler_writer() 4594 if (*errorHandler == NULL) in unicode_decode_call_errorhandler_writer() [all …]
|