/external/ImageMagick/MagickWand/ |
D | operation.c | 424 #define _exception (cli_wand->wand.exception) in CLISettingOptionInfo() macro 453 arg1=InterpretImageProperties(_image_info,_image,arg1n,_exception); in CLISettingOptionInfo() 460 arg2=InterpretImageProperties(_image_info,_image,arg2n,_exception); in CLISettingOptionInfo() 484 (void) ParseAffineGeometry(arg1,&_draw_info->affine,_exception); in CLISettingOptionInfo() 494 &_image_info->alpha_color,_exception); in CLISettingOptionInfo() 536 &_image_info->background_color,_exception); in CLISettingOptionInfo() 582 &_image_info->border_color,_exception); in CLISettingOptionInfo() 584 &_draw_info->border_color,_exception); in CLISettingOptionInfo() 589 &_image_info->border_color,_exception); in CLISettingOptionInfo() 591 &_draw_info->border_color,_exception); in CLISettingOptionInfo() [all …]
|
/external/python/cpython3/Lib/asyncio/ |
D | streams.py | 353 self._exception = None 367 if self._exception: 368 info.append('e=%r' % self._exception) 376 return self._exception 379 self._exception = exc 519 if self._exception is not None: 520 raise self._exception 608 if self._exception is not None: 609 raise self._exception 656 if self._exception is not None: [all …]
|
D | futures.py | 130 _exception = None variable in Future 176 exc = self._exception 243 if self._exception is not None: 244 raise self._exception 263 return self._exception 317 self._exception = exception
|
D | base_tasks.py | 39 elif task._exception is not None: 40 tb = task._exception.__traceback__ 64 exc = task._exception
|
D | base_futures.py | 59 if future._exception is not None: 60 info.append('exception={!r}'.format(future._exception))
|
D | tasks.py | 622 elif fut._exception is not None:
|
D | base_events.py | 177 exc = fut._exception
|
/external/python/futures/concurrent/futures/ |
D | _base.py | 323 self._exception = None 354 if self._exception: 359 self._exception.__class__.__name__) 406 if self._exception: 407 if isinstance(self._exception, types.InstanceType): 411 exception_type = self._exception.__class__ 413 exception_type = type(self._exception) 414 raise exception_type, self._exception, self._traceback 488 return self._exception, self._traceback 495 return self._exception, self._traceback [all …]
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | _base.py | 290 self._exception = None 304 if self._exception: 309 self._exception.__class__.__name__) 356 if self._exception: 357 raise self._exception 431 return self._exception 438 return self._exception 502 self._exception = exception
|
/external/autotest/client/cros/ |
D | dhcp_test_server.py | 84 self._exception = None 171 self._exception = None 180 if self._exception: 181 raise self._exception 301 self._exception = e
|
/external/autotest/venv/lucifer/ |
D | eventlib_unittest.py | 93 self._exception = exception 96 raise self._exception
|
/external/python/cpython3/Lib/xml/sax/ |
D | _exceptions.py | 23 self._exception = exception 32 return self._exception
|
/external/python/cpython2/Lib/xml/sax/ |
D | _exceptions.py | 23 self._exception = exception 32 return self._exception
|
/external/protobuf/python/ |
D | mox.py | 542 self._exception = None 570 if expected_method._exception: 571 raise expected_method._exception 736 self._exception = exception
|
/external/libmojo/third_party/catapult/devil/devil/utils/ |
D | timeout_retry.py | 116 def AlwaysRetry(_exception): argument
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | timeout_retry.py | 116 def AlwaysRetry(_exception): argument
|
/external/tensorflow/tensorflow/python/framework/ |
D | test_util.py | 930 self._exception = None 939 self._exception = e 958 if self._exception is not None: 959 self._testcase.fail("Error in checkedThread: %s" % str(self._exception))
|
/external/python/cpython3/Lib/unittest/ |
D | loader.py | 27 self._exception = exception 34 raise self._exception
|
/external/python/cpython3/Lib/ |
D | asyncore.py | 97 def _exception(obj): function 162 _exception(obj)
|
/external/python/cpython2/Lib/ |
D | asyncore.py | 97 def _exception(obj): function 168 _exception(obj)
|
/external/python/cpython2/Lib/test/ |
D | test_asyncore.py | 99 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1) 112 asyncore._exception(tr2)
|
/external/python/cpython3/Lib/test/ |
D | test_concurrent_futures.py | 30 f._exception = exception 747 f1._exception = OSError()
|
D | test_asyncore.py | 112 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1) 125 asyncore._exception(tr2)
|
/external/python/futures/ |
D | test_futures.py | 109 f._exception = exception 752 f1._exception = IOError()
|
/external/python/cpython3/Modules/ |
D | _asynciomodule.c | 46 PyObject *prefix##_exception; \
|