/external/libmojo/third_party/jinja2/ |
D | debug.py | 83 def __init__(self, exc_type, exc_value, frames): argument 85 self.exc_type = exc_type 99 lines = traceback.format_exception(self.exc_type, self.exc_value, 119 return self.exc_type, self.exc_value, self.frames[0] 129 return self.exc_type, self.exc_value, tb 134 exc_type, exc_value, tb = exc_info 200 exc_type, exc_value, tb = exc_info
|
/external/python/cpython2/Lib/ |
D | py_compile.py | 45 def __init__(self, exc_type, exc_value, file, msg=''): argument 46 exc_type_name = exc_type.__name__ 47 if exc_type is SyntaxError: 48 tbtext = ''.join(traceback.format_exception_only(exc_type, exc_value))
|
D | SimpleXMLRPCServer.py | 270 exc_type, exc_value, exc_tb = sys.exc_info() 272 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)), 371 exc_type, exc_value, exc_tb = sys.exc_info() 374 'faultString' : "%s:%s" % (exc_type, exc_value)} 635 exc_type, exc_value = sys.exc_info()[:2] 637 xmlrpclib.Fault(1, "%s:%s" % (exc_type, exc_value)),
|
/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/skia/infra/bots/ |
D | git_utils.py | 33 def __exit__(self, exc_type, _value, _traceback): argument 84 def __exit__(self, exc_type, _value, _traceback): argument 88 if exc_type is None:
|
/external/autotest/client/cros/ |
D | device_jail_utils.py | 39 def __exit__(self, exc_type, exc_val, traceback): argument 53 def __exit__(self, exc_type, exc_val, traceback): argument 154 def __exit__(self, exc_type, exc_val, traceback): argument
|
D | cros_disks.py | 41 def __exit__(self, exc_type, exc_value, traceback): argument 42 if exc_type and issubclass(exc_type, self.__suppressed_exc_types): 45 exc_type, exc_value) 551 def __exit__(self, exc_type, exc_value, traceback): argument
|
/external/libmojo/third_party/catapult/devil/devil/utils/ |
D | mock_calls.py | 60 def __exit__(self, exc_type, exc_val, exc_tb): argument 62 patch.__exit__(exc_type, exc_val, exc_tb) 63 if exc_type is None:
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | mock_calls.py | 60 def __exit__(self, exc_type, exc_val, exc_tb): argument 62 patch.__exit__(exc_type, exc_val, exc_tb) 63 if exc_type is None:
|
D | cmd_helper_test.py | 191 def __exit__(self, exc_type, exc_val, exc_tb): argument 193 m.__exit__(exc_type, exc_val, exc_tb)
|
/external/libxml2/doc/ |
D | index.py | 226 print sys.exc_type, sys.exc_value 267 print sys.exc_type, sys.exc_value 316 print sys.exc_type, sys.exc_value 356 print sys.exc_type, sys.exc_value 439 print sys.exc_type, sys.exc_value 616 print sys.exc_type, sys.exc_value 665 print sys.exc_type, sys.exc_value 1018 print sys.exc_type, sys.exc_value 1184 print sys.exc_type, sys.exc_value 1210 print sys.exc_type, sys.exc_value [all …]
|
D | queries.py | 48 print sys.exc_type, sys.exc_value 107 print sys.exc_type, sys.exc_value
|
/external/autotest/server/hosts/ |
D | testbed.py | 157 exc_type, exc_value, exc_traceback = sys.exc_info() 158 failures.append((adb_device.adb_serial, exc_type, exc_value, 162 for serial, exc_type, exc_value, exc_traceback in failures: 165 exc_type, exc_value, exc_traceback))
|
/external/autotest/client/deps/lansim/src/py/ |
D | simulator.py | 25 def __exit__(self, exc_type, exc_val, exc_tb): argument 402 exc_type, exc_value, exc_traceback = sys.exc_info() 404 exc_type, exc_value, exc_traceback))
|
/external/python/cpython2/Lib/test/ |
D | test_exceptions.py | 690 for exc_type in (ValueError, BrokenStrException): 692 exc = exc_type("test message") 695 except exc_type: 701 self.assertIn(exc_type.__name__, report) 702 if exc_type is BrokenStrException:
|
D | test_with.py | 215 exc_type=None): argument 218 if exc_type is None: 220 exc_type = type(self.TEST_EXCEPTION) 221 self.assertEqual(mock_manager.exit_args[0], exc_type) 223 self.assertIsInstance(mock_manager.exit_args[1], exc_type)
|
/external/python/cpython2/Lib/idlelib/ |
D | StackViewer.py | 135 exc_type, exc_value, exc_tb = sys.exc_info() 138 sys.last_type = exc_type
|
/external/autotest/client/cros/video/ |
D | import_screenshot_capturer.py | 63 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/python/cpython2/Modules/ |
D | _tkinter.c | 1440 PyObject **exc_type, **exc_value, **exc_tb; member 1550 PyErr_Fetch(e->exc_type, e->exc_value, e->exc_tb); in Tkapp_CallProc() 1560 *(e->exc_type) = NULL; in Tkapp_CallProc() 1616 PyObject *exc_type, *exc_value, *exc_tb; in Tkapp_Call() local 1628 ev->exc_type = &exc_type; in Tkapp_Call() 1636 if (exc_type) in Tkapp_Call() 1637 PyErr_Restore(exc_type, exc_value, exc_tb); in Tkapp_Call() 1831 PyObject **exc_type; member 1875 *(ev->exc_type) = exc; in var_perform() 1904 PyObject *res, *exc_type, *exc_val; in var_invoke() local [all …]
|
/external/autotest/client/cros/image_comparison/ |
D | upload_on_fail_comparer.py | 100 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
D | rgb_image_comparer.py | 91 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
D | pdiff_image_comparer.py | 106 def __exit__(self, exc_type, exc_val, exc_tb): argument
|
/external/python/cpython2/Doc/library/ |
D | traceback.rst | 45 This is a shorthand for ``print_exception(sys.exc_type, sys.exc_value, 182 exc_type, exc_value, exc_traceback = sys.exc_info() 186 traceback.print_exception(exc_type, exc_value, exc_traceback, 195 print repr(traceback.format_exception(exc_type, exc_value,
|
/external/libmojo/third_party/catapult/devil/devil/android/sdk/ |
D | shared_prefs.py | 354 def __exit__(self, exc_type, _exc_value, _traceback): argument 356 if not exc_type:
|