/external/ImageMagick/MagickWand/ |
D | operation.c | 426 #define _exception (cli_wand->wand.exception) in CLISettingOptionInfo() macro 455 arg1=InterpretImageProperties(_image_info,_image,arg1n,_exception); in CLISettingOptionInfo() 462 arg2=InterpretImageProperties(_image_info,_image,arg2n,_exception); in CLISettingOptionInfo() 486 (void) ParseAffineGeometry(arg1,&_draw_info->affine,_exception); in CLISettingOptionInfo() 530 &_image_info->background_color,_exception); in CLISettingOptionInfo() 576 &_image_info->border_color,_exception); in CLISettingOptionInfo() 578 &_draw_info->border_color,_exception); in CLISettingOptionInfo() 583 &_image_info->border_color,_exception); in CLISettingOptionInfo() 585 &_draw_info->border_color,_exception); in CLISettingOptionInfo() 697 (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 | futures.py | 51 _exception = None variable in Future 95 exc = self._exception 177 if self._exception is not None: 178 raise self._exception 194 return self._exception 252 self._exception = exception
|
D | base_tasks.py | 41 elif task._exception is not None: 42 tb = task._exception.__traceback__ 67 exc = task._exception
|
D | base_futures.py | 49 if future._exception is not None:
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | _base.py | 321 self._exception = None 335 if self._exception: 340 self._exception.__class__.__name__) 387 if self._exception: 388 raise self._exception 465 return self._exception 472 return self._exception 540 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/python/cpython2/Lib/xml/sax/ |
D | _exceptions.py | 23 self._exception = exception 32 return self._exception
|
/external/python/cpython3/Lib/xml/sax/ |
D | _exceptions.py | 23 self._exception = exception 32 return self._exception
|
/external/u-boot/arch/powerpc/cpu/mpc8xx/ |
D | traps.c | 78 static void _exception(int signr, struct pt_regs *regs) in _exception() function 149 _exception(0, regs); in UnknownException()
|
/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 next sect…
|
/external/u-boot/arch/powerpc/cpu/mpc83xx/ |
D | traps.c | 77 static void _exception(int signr, struct pt_regs *regs) in _exception() function 202 _exception(0, regs); in UnknownException()
|
/external/u-boot/arch/powerpc/cpu/mpc86xx/ |
D | traps.c | 86 static void _exception(int signr, struct pt_regs *regs) in _exception() function 195 _exception(0, regs); in UnknownException()
|
/external/u-boot/arch/nios2/cpu/ |
D | start.S | 47 movhi et, %hi(_exception) 48 ori et, et, %lo(_exception)
|
D | exceptions.S | 14 .global _exception symbol 19 _exception: label
|
/external/u-boot/arch/powerpc/cpu/mpc85xx/ |
D | traps.c | 116 static void _exception(int signr, struct pt_regs *regs) in _exception() function 259 _exception(0, regs); in UnknownException()
|
/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/protobuf/python/ |
D | mox.py | 542 self._exception = None 570 if expected_method._exception: 571 raise expected_method._exception 736 self._exception = exception
|
/external/tensorflow/tensorflow/python/keras/utils/ |
D | data_utils.py | 367 self._exception = None 377 if self._exception: 378 raise self._exception # pylint: disable=raising-bad-type 383 self._exception = e
|
/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 | 117 def AlwaysRetry(_exception): argument
|
/external/python/cpython3/Lib/ |
D | asyncore.py | 97 def _exception(obj): function 162 _exception(obj)
|
/external/python/cpython3/Lib/unittest/ |
D | loader.py | 27 self._exception = exception 34 raise self._exception
|