/external/ImageMagick/MagickWand/ |
D | operation.c | 444 #define _exception (cli_wand->wand.exception) in CLISettingOptionInfo() macro 473 arg1=InterpretImageProperties(_image_info,_image,arg1n,_exception); in CLISettingOptionInfo() 480 arg2=InterpretImageProperties(_image_info,_image,arg2n,_exception); in CLISettingOptionInfo() 504 (void) ParseAffineGeometry(arg1,&_draw_info->affine,_exception); in CLISettingOptionInfo() 548 &_image_info->background_color,_exception); in CLISettingOptionInfo() 594 &_image_info->border_color,_exception); in CLISettingOptionInfo() 596 &_draw_info->border_color,_exception); in CLISettingOptionInfo() 601 &_image_info->border_color,_exception); in CLISettingOptionInfo() 603 &_draw_info->border_color,_exception); in CLISettingOptionInfo() 715 (void) DefineImageRegistry(StringRegistryType,arg1+9,_exception); in CLISettingOptionInfo() [all …]
|
/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/asyncio/ |
D | streams.py | 409 self._exception = None 426 if self._exception: 435 return self._exception 438 self._exception = exc 576 if self._exception is not None: 577 raise self._exception 664 if self._exception is not None: 665 raise self._exception 711 if self._exception is not None: 712 raise self._exception
|
D | base_tasks.py | 48 elif task._exception is not None: 49 tb = task._exception.__traceback__ 74 exc = task._exception
|
D | futures.py | 51 _exception = None variable in Future 98 exc = self._exception 200 if self._exception is not None: 201 raise self._exception 218 return self._exception 276 self._exception = exception
|
D | base_futures.py | 60 if future._exception is not None:
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | _base.py | 322 self._exception = None 336 if self._exception: 341 self._exception.__class__.__name__) 388 if self._exception: 389 raise self._exception 466 return self._exception 473 return self._exception 541 self._exception = exception
|
/external/autotest/client/cros/ |
D | dhcp_test_server.py | 90 self._exception = None 177 self._exception = None 186 if self._exception: 187 raise self._exception 307 self._exception = e
|
/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/catch2/docs/ |
D | assertions.md | 120 * **REQUIRE_THROWS_AS(** _expression_, _exception type_ **)** and 121 * **CHECK_THROWS_AS(** _expression_, _exception type_ **)** 123 …ied type_ is thrown during evaluation of the expression. Note that the _exception type_ is extende… 136 * **REQUIRE_THROWS_MATCHES(** _expression_, _exception type_, _matcher for given exception type_ **… 137 * **CHECK_THROWS_MATCHES(** _expression_, _exception type_, _matcher for given exception type_ **)** 139 Expects that exception of _exception type_ is thrown and it matches provided matcher (see the [docu…
|
/external/grpc-grpc/src/python/grpcio/grpc/ |
D | _interceptor.py | 82 self._exception = exception 116 raise self._exception 119 return self._exception 134 raise self._exception
|
/external/grpc-grpc/src/python/grpcio_tests/tests/unit/ |
D | _metadata_code_details_test.py | 67 self._exception = False 83 if self._exception: 102 if self._exception: 120 if self._exception: 142 if self._exception: 159 self._exception = True
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | data_utils.py | 378 self._exception = None 388 if self._exception: 389 raise self._exception # pylint: disable=raising-bad-type 394 self._exception = e
|
/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/grpc-grpc/src/python/grpcio_testing/grpc_testing/_channel/ |
D | _invocation.py | 173 def _exception(unused_handler): function 209 return _exception(self._handler)
|
/external/chromium-trace/catapult/devil/devil/utils/ |
D | timeout_retry.py | 115 def AlwaysRetry(_exception): argument
|
/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/futures/ |
D | test_futures.py | 109 f._exception = exception 752 f1._exception = IOError()
|
/external/python/cpython3/Lib/test/ |
D | test_asyncore.py | 109 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1) 122 asyncore._exception(tr2)
|
D | test_concurrent_futures.py | 38 f._exception = exception 1458 f1._exception = OSError()
|
/external/tensorflow/tensorflow/python/framework/ |
D | test_util.py | 2423 self._exception = None 2432 self._exception = e 2451 if self._exception is not None: 2452 self._testcase.fail("Error in checkedThread: %s" % str(self._exception))
|