/external/Reactive-Extensions/RxCpp/Rx/v2/src/rxcpp/ |
D | rx-observer.hpp | 76 OnErrorForward() : onerror() {} in OnErrorForward() 77 explicit OnErrorForward(onerror_t oe) : onerror(std::move(oe)) {} in OnErrorForward() 78 onerror_t onerror; member 80 onerror(s, ep); in operator ()() 200 on_error_t onerror; member in rxcpp::observer 208 , onerror(std::move(e)) in observer() 215 , onerror(on_error_t()) in observer() 222 , onerror(o.onerror) in observer() 229 , onerror(std::move(o.onerror)) in observer() 236 onerror = std::move(o.onerror); in operator =() [all …]
|
/external/python/cpython3/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()) 651 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 …]
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_scandir.py | 210 def walk(filesystem, top, topdown=True, onerror=None, followlinks=False): argument 236 if onerror is not None: 237 onerror(exc) 293 def walk(self, top, topdown=True, onerror=None, followlinks=False): argument 310 return walk(self.filesystem, top, topdown, onerror, followlinks)
|
/external/python/cpython2/Lib/ |
D | shutil.py | 224 def rmtree(path, ignore_errors=False, onerror=None): argument 236 def onerror(*args): function 238 elif onerror is None: 239 def onerror(*args): function 246 onerror(os.path.islink, path, sys.exc_info()) 253 onerror(os.listdir, path, sys.exc_info()) 261 rmtree(fullname, ignore_errors, onerror) 266 onerror(os.remove, fullname, sys.exc_info()) 270 onerror(os.rmdir, path, sys.exc_info())
|
D | pkgutil.py | 68 def walk_packages(path=None, prefix='', onerror=None): argument 109 if onerror is not None: 110 onerror(name) 112 if onerror is not None: 113 onerror(name) 122 for item in walk_packages(path, name+'.', onerror):
|
D | os.py | 209 def walk(top, topdown=True, onerror=None, followlinks=False): argument 280 if onerror is not None: 281 onerror(err) 296 for x in walk(new_path, topdown, onerror, followlinks):
|
D | pydoc.py | 1959 def onerror(modname): function 1961 ModuleScanner().run(callback, onerror=onerror) 1997 def run(self, callback, key=None, completer=None, onerror=None): argument 2012 for importer, modname, ispkg in pkgutil.walk_packages(onerror=onerror): 2044 def onerror(modname): function 2048 ModuleScanner().run(callback, key, onerror=onerror) 2254 def onerror(modname): function 2258 kwargs=dict(onerror=onerror)).start()
|
/external/tensorflow/tensorflow/python/lib/io/ |
D | file_io.py | 801 def walk_v2(top, topdown=True, onerror=None): argument 830 if onerror: 831 onerror(err) 851 _make_full_path(top, subdir), topdown, onerror=onerror):
|
/external/curl/tests/data/ |
D | test1188 | 26 --write-out with %{onerror} and %{urlnum} to stderr 29 -f -s -w '%{onerror}%{stderr}%{urlnum} says %{exitcode} %{errormsg}\n' http://%HOSTIP:%HTTPPORT/we/…
|
/external/python/cffi/c/ |
D | call_python.c | 75 PyObject *error, *onerror, *infotuple, *old1; in _ffi_def_extern_decorator() local 86 if (!PyArg_ParseTuple(outer_args, "OzOO", &ffi, &s, &error, &onerror)) in _ffi_def_extern_decorator() 114 infotuple = prepare_callback_info_tuple(ct, fn, error, onerror, 0); in _ffi_def_extern_decorator()
|
D | ffi_obj.c | 757 PyObject *res, *onerror = Py_None; in ffi_def_extern() local 761 &name, &error, &onerror)) in ffi_def_extern() 764 args = Py_BuildValue("(OOOO)", (PyObject *)self, name, error, onerror); in ffi_def_extern() 794 PyObject *res, *onerror = Py_None; in ffi_callback() local 800 &onerror)) in ffi_callback() 808 args = Py_BuildValue("(OOOO)", c_decl, python_callable, error, onerror); in ffi_callback()
|
/external/perfetto/ui/src/frontend/ |
D | legacy_trace_viewer.ts | 50 reader.onerror = err => { 100 reader.onerror = err => {
|
D | live_reload.ts | 35 monitor.onerror = (err) => {
|
D | index.ts | 184 css.onerror = (err) => cssLoadPromise.reject(err); 194 script.onerror = () => globals.logging.initialize();
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rcssmin/_setup/py2/ |
D | shell.py | 371 def walk(top, topdown=True, onerror=None): argument 380 if onerror is not None: 381 onerror(err) 396 for x in walk(path, topdown, onerror):
|
/external/chromium-trace/catapult/common/py_vulcanize/third_party/rjsmin/_setup/py2/ |
D | shell.py | 371 def walk(top, topdown=True, onerror=None): argument 380 if onerror is not None: 381 onerror(err) 396 for x in walk(path, topdown, onerror):
|
/external/perfetto/ui/src/common/ |
D | http_rpc_engine.ts | 51 this.websocket.onerror = (e) =>
|
/external/tensorflow/tensorflow/tools/api/golden/v1/ |
D | tensorflow.io.gfile.pbtxt | 53 …argspec: "args=[\'top\', \'topdown\', \'onerror\'], varargs=None, keywords=None, defaults=[\'True\…
|
/external/tensorflow/tensorflow/tools/api/golden/v2/ |
D | tensorflow.io.gfile.pbtxt | 53 …argspec: "args=[\'top\', \'topdown\', \'onerror\'], varargs=None, keywords=None, defaults=[\'True\…
|
/external/python/cpython2/Doc/library/ |
D | pkgutil.rst | 144 .. function:: walk_packages(path=None, prefix='', onerror=None) 157 *onerror* is a function which gets called with one argument (the name of the 159 import a package. If no *onerror* function is supplied, :exc:`ImportError`\s
|
/external/chromium-trace/catapult/dependency_manager/dependency_manager/ |
D | dependency_manager_util.py | 30 shutil.rmtree(dir_path, onerror=_WinReadOnlyHandler)
|
/external/python/cpython3/Lib/multiprocessing/ |
D | queues.py | 215 onerror, queue_sem): argument 273 onerror(e, obj)
|