Home
last modified time | relevance | path

Searched refs:errorHandler (Results 1 – 25 of 40) sorted by relevance

12

/third_party/python/Lib/xml/sax/
D__init__.py29 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/
DGrGLProgramBuilder.cpp257 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 …]
DGrGLShaderStringBuilder.cpp26 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()
DGrGLShaderStringBuilder.h22 GrContextOptions::ShaderErrorHandler* errorHandler);
29 GrContextOptions::ShaderErrorHandler* errorHandler);
DGrGLProgramBuilder.h68 GrContextOptions::ShaderErrorHandler* errorHandler);
78 bool checkLinkStatus(GrGLuint programID, GrContextOptions::ShaderErrorHandler* errorHandler,
/third_party/node/deps/npm/test/lib/commands/
Dcompletion.js72 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/
Dxmlbuilder.py40 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/
Dtest-child-process-pipe-dataflow.js50 const errorHandler = (thing, type) => { function
55 child.stderr.on('data', (d) => { errorHandler(d, 'data'); });
56 child.on('error', (err) => { errorHandler(err, 'error'); });
Dtest-tls-alert-handling.js33 const errorHandler = common.mustCall((err) => { constant
44 s.on('error', errorHandler);
Dtest-domain-no-error-handler-abort-on-uncaught-7.js10 d.on('error', function errorHandler() { function
Dtest-domain-no-error-handler-abort-on-uncaught-6.js10 d.on('error', function errorHandler() { function
Dtest-domain-no-error-handler-abort-on-uncaught-8.js10 d.on('error', function errorHandler() { function
Dtest-domain-no-error-handler-abort-on-uncaught-9.js10 d.on('error', function errorHandler() { function
/third_party/skia/src/gpu/mtl/
DGrMtlPipelineStateBuilder.mm92 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 …]
DGrMtlUtil.h77 GrContextOptions::ShaderErrorHandler* errorHandler);
84 GrContextOptions::ShaderErrorHandler* errorHandler);
DGrMtlPipelineStateBuilder.h66 GrContextOptions::ShaderErrorHandler* errorHandler);
DGrMtlUtil.mm66 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/
Ddescribe_it.js353 return (_, errorHandler) => errorHandler(new Error('custom error'));
374 return (_, errorHandler) => errorHandler(new Error('custom error'));
Doutput.js370 return (_, errorHandler) => errorHandler('custom error');
/third_party/skia/src/gpu/vk/
DGrVkUtil.cpp102 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/
Dfind-inactive-collaborators.mjs29 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)]);
Dfind-inactive-tsc.mjs31 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/
DSPVRemapper.h128 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/
Devents.js1088 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/
Dunicodeobject.c357 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 …]

12