/third_party/jsframework/runtime/main/page/ |
D | Image.ts | 61 if (this.onerror && typeof this.onerror === 'function') { 62 this.onerror(data); 108 public get onerror() { method in Image 112 public set onerror(onerror: (...args: any | null) => void) { method in Image 113 this._onerror = onerror;
|
/third_party/node/lib/internal/streams/ |
D | legacy.js | 59 function onerror(er) { function 66 prependListener(source, 'error', onerror); 67 prependListener(dest, 'error', onerror); 77 source.removeListener('error', onerror); 78 dest.removeListener('error', onerror);
|
D | end-of-stream.js | 110 const onerror = (err) => { function 149 if (options.error !== false) stream.on('error', onerror); 187 stream.removeListener('error', onerror);
|
D | writable.js | 677 function onerror(err) { function 679 stream.removeListener('error', onerror); 688 stream.removeListener('error', onerror); 692 stream.prependListener('error', onerror);
|
/third_party/python/Lib/ |
D | os.py | 282 def walk(top, topdown=True, onerror=None, followlinks=False): argument 341 sys.audit("os.walk", top, topdown, onerror, followlinks) 342 return _walk(fspath(top), topdown, onerror, followlinks) 344 def _walk(top, topdown, onerror, followlinks): argument 359 if onerror is not None: 360 onerror(error) 371 if onerror is not None: 372 onerror(error) 418 yield from _walk(new_path, topdown, onerror, followlinks) 422 yield from _walk(new_path, topdown, onerror, followlinks) [all …]
|
D | shutil.py | 593 def _rmtree_unsafe(path, onerror): argument 598 onerror(os.scandir, path, sys.exc_info()) 610 onerror(os.path.islink, fullname, sys.exc_info()) 612 _rmtree_unsafe(fullname, onerror) 617 onerror(os.unlink, fullname, sys.exc_info()) 621 onerror(os.rmdir, path, sys.exc_info()) 624 def _rmtree_safe_fd(topfd, path, onerror): argument 630 onerror(os.scandir, path, sys.exc_info()) 644 onerror(os.lstat, fullname, sys.exc_info()) 650 onerror(os.open, fullname, sys.exc_info()) [all …]
|
D | pkgutil.py | 53 def walk_packages(path=None, prefix='', onerror=None): argument 94 if onerror is not None: 95 onerror(info.name) 97 if onerror is not None: 98 onerror(info.name) 107 yield from walk_packages(path, info.name+'.', onerror)
|
D | pydoc.py | 2199 def onerror(modname): function 2201 ModuleScanner().run(callback, onerror=onerror) 2213 def run(self, callback, key=None, completer=None, onerror=None): argument 2230 for importer, modname, ispkg in pkgutil.walk_packages(onerror=onerror): 2247 if onerror: 2248 onerror(modname) 2259 if onerror: 2260 onerror(modname) 2277 def onerror(modname): function 2281 ModuleScanner().run(callback, key, onerror=onerror) [all …]
|
/third_party/node/deps/npm/node_modules/agent-base/ |
D | index.js | 99 function onerror(err) { function 114 onerror(err); 123 onerror(err); 146 onerror(err);
|
/third_party/node/deps/npm/node_modules/socks-proxy-agent/node_modules/agent-base/ |
D | index.js | 99 function onerror(err) { function 114 onerror(err); 123 onerror(err); 146 onerror(err);
|
/third_party/node/deps/npm/node_modules/readable-stream/lib/internal/streams/ |
D | end-of-stream.js | 54 var onerror = function onerror(err) { function 88 if (opts.error !== false) stream.on('error', onerror); 99 stream.removeListener('error', onerror);
|
/third_party/node/test/fixtures/wpt/FileAPI/url/ |
D | url-with-xhr.any.js | 12 xhr.onerror = () => reject('Got unexpected error event'); function 22 xhr.onerror = resolve; 65 xhr.onerror = t.unreached_func('Got unexpected error event');
|
/third_party/node/deps/npm/node_modules/end-of-stream/ |
D | index.js | 42 var onerror = function(err) { function 69 if (opts.error !== false) stream.on('error', onerror); 82 stream.removeListener('error', onerror);
|
/third_party/node/deps/npm/node_modules/asap/ |
D | browser-asap.js | 50 if (asap.onerror) { 54 asap.onerror(error);
|
/third_party/node/deps/npm/node_modules/https-proxy-agent/ |
D | index.js | 98 socket.removeListener('error', onerror); 111 function onerror(err) { function 197 socket.on('error', onerror);
|
/third_party/node/test/parallel/ |
D | test-gc-http-client-onerror.js | 35 }, cb).on('error', onerror); 49 function onerror(err) { function
|
D | test-policy-parse-integrity.js | 102 onerror: 'exit' property 109 onerror: 'log' property
|
D | test-policy-scopes-integrity.js | 292 onerror: 'throw' property 310 onerror: 'unknown' property
|
/third_party/jsframework/runtime/main/extend/systemplugin/napi/ |
D | ohos_worker.js | 68 onerror: function (...args) { method 147 this.onerror = function (...args) { method
|
/third_party/node/test/fixtures/wpt/FileAPI/support/ |
D | Blob.js | 20 fr.onerror = t.step_func(function(e) { 46 fr.onerror = t.step_func(function(e) {
|
/third_party/node/deps/npm/node_modules/sorted-union-stream/node_modules/readable-stream/lib/ |
D | _stream_readable.js | 553 dest.removeListener('error', onerror); 583 function onerror(er) { function 586 dest.removeListener('error', onerror); 593 dest.on('error', onerror); 595 dest._events.error.unshift(onerror); 597 dest._events.error = [onerror, dest._events.error];
|
/third_party/flutter/skia/third_party/externals/sdl/test/nacl/ |
D | common.js | 73 function injectScript(url, onload, onerror) { argument 78 if (onerror) { 79 scriptEl.addEventListener('error', onerror, false);
|
D | background.js | 33 xhr.onerror = function() { function
|
/third_party/node/test/fixtures/wpt/FileAPI/blob/ |
D | Blob-in-worker.worker.js | 10 reader.onerror = this.unreached_func("Unexpected error event");
|
/third_party/node/test/fixtures/wpt/FileAPI/file/ |
D | Worker-read-file-constructor.worker.js | 11 reader.onerror = this.unreached_func("Unexpected error event");
|