/external/tensorflow/tensorflow/python/autograph/core/ |
D | function_wrappers.py | 83 def __exit__(self, exc_type, exc_val, exc_tb): argument 85 self.autograph_ctx.__exit__(exc_type, exc_val, exc_tb) 87 self.name_scope.__exit__(exc_type, exc_val, exc_tb) 89 self.autodeps_scope.__exit__(exc_type, exc_val, exc_tb)
|
/external/autotest/server/cros/servo/ |
D | servo.py | 165 def _log_exception(exc_type, exc_val, exc_tb): argument 167 if exc_val is not None: 169 'Wrapped exception:', exc_info=(exc_type, exc_val, exc_tb)) 175 def __exit__(self, exc_type, exc_val, exc_tb): argument 178 if isinstance(exc_val, six.moves.http_client.BadStatusLine): 179 self._log_exception(exc_type, exc_val, exc_tb) 180 if exc_val.line in ('', "''"): 181 err = ServodEmptyResponse(self.description, exc_val.line) 183 err = ServodBadResponse(self.description, exc_val.line) 186 if isinstance(exc_val, seven.SOCKET_ERRORS): [all …]
|
/external/chromium-trace/catapult/common/py_utils/py_utils/ |
D | contextlib_ext.py | 17 def __exit__(self, exc_type, exc_val, exc_tb): argument 19 return self._manager.__exit__(exc_type, exc_val, exc_tb)
|
D | contextlib_ext_unittest.py | 21 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | parallelizer.py | 218 def __exit__(self, exc_type, exc_val, exc_tb): argument 230 r.__call__(exc_type, exc_val, exc_tb)
|
D | mock_calls.py | 62 def __exit__(self, exc_type, exc_val, exc_tb): argument 64 patch.__exit__(exc_type, exc_val, exc_tb)
|
D | cmd_helper_test.py | 196 def __exit__(self, exc_type, exc_val, exc_tb): argument 198 m.__exit__(exc_type, exc_val, exc_tb)
|
/external/tensorflow/tensorflow/python/profiler/ |
D | trace.py | 125 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/grpc-grpc/src/python/grpcio/grpc/framework/foundation/ |
D | logging_pool.py | 48 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/autotest/client/cros/input_playback/ |
D | keyboard.py | 57 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
D | stylus.py | 111 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/grpc-grpc/src/python/grpcio_testing/grpc_testing/_channel/ |
D | _channel.py | 67 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 559 PyObject *exc_val = NULL; in future_set_exception() local 567 exc_val = PyObject_CallNoArgs(exc); in future_set_exception() 568 if (exc_val == NULL) { in future_set_exception() 572 Py_DECREF(exc_val); in future_set_exception() 578 exc_val = exc; in future_set_exception() 579 Py_INCREF(exc_val); in future_set_exception() 581 if (!PyExceptionInstance_Check(exc_val)) { in future_set_exception() 582 Py_DECREF(exc_val); in future_set_exception() 586 if (Py_IS_TYPE(exc_val, (PyTypeObject *)PyExc_StopIteration)) { in future_set_exception() 587 Py_DECREF(exc_val); in future_set_exception() [all …]
|
D | _tkinter.c | 1681 PyObject **exc_val; member 1749 *(ev->exc_val) = val; in var_perform() 1774 PyObject *res, *exc_type, *exc_val; in var_invoke() local 1794 ev->exc_val = &exc_val; in var_invoke() 1800 PyErr_SetObject(exc_type, exc_val); in var_invoke() 1802 Py_DECREF(exc_val); in var_invoke()
|
/external/autotest/client/cros/image_comparison/ |
D | pdiff_image_comparer.py | 106 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/autotest/client/cros/video/ |
D | chameleon_screenshot_capturer.py | 109 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | device_temp_file.py | 120 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
D | logcat_monitor.py | 273 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/rust/crates/grpcio-sys/grpc/tools/run_tests/xds_k8s_test_driver/framework/rpc/ |
D | grpc.py | 99 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/autotest/client/cros/chameleon/ |
D | chameleon_video_capturer.py | 160 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/autotest/client/cros/ |
D | memory_bandwidth_logger.py | 89 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/autotest/client/cros/faft/utils/ |
D | flashrom_handler.py | 118 def __exit__(self, exc_type, exc_val, exc_tb): argument 123 if not isinstance(exc_val, error.CmdError): 126 result = exc_val.result_obj
|
/external/python/pyfakefs/pyfakefs/ |
D | fake_scandir.py | 158 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/autotest/client/deps/lansim/src/py/ |
D | simulator.py | 25 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/python/cpython2/Modules/ |
D | _tkinter.c | 1832 PyObject **exc_val; member 1876 *(ev->exc_val) = val; in var_perform() 1904 PyObject *res, *exc_type, *exc_val; in var_invoke() local 1924 ev->exc_val = &exc_val; in var_invoke() 1930 PyErr_SetObject(exc_type, exc_val); in var_invoke() 1932 Py_DECREF(exc_val); in var_invoke()
|