Home
last modified time | relevance | path

Searched refs:_exception (Results 1 – 25 of 33) sorted by relevance

12

/external/ImageMagick/MagickWand/
Doperation.c426 #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.py323 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/
Dstreams.py409 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
Dfutures.py51 _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
Dbase_tasks.py41 elif task._exception is not None:
42 tb = task._exception.__traceback__
67 exc = task._exception
Dbase_futures.py49 if future._exception is not None:
/external/python/cpython3/Lib/concurrent/futures/
D_base.py321 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/
Ddhcp_test_server.py84 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.py23 self._exception = exception
32 return self._exception
/external/python/cpython3/Lib/xml/sax/
D_exceptions.py23 self._exception = exception
32 return self._exception
/external/u-boot/arch/powerpc/cpu/mpc8xx/
Dtraps.c78 static void _exception(int signr, struct pt_regs *regs) in _exception() function
149 _exception(0, regs); in UnknownException()
/external/catch2/docs/
Dassertions.md120 * **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/
Dtraps.c77 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/
Dtraps.c86 static void _exception(int signr, struct pt_regs *regs) in _exception() function
195 _exception(0, regs); in UnknownException()
/external/u-boot/arch/nios2/cpu/
Dstart.S47 movhi et, %hi(_exception)
48 ori et, et, %lo(_exception)
Dexceptions.S14 .global _exception symbol
19 _exception: label
/external/u-boot/arch/powerpc/cpu/mpc85xx/
Dtraps.c116 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.py82 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.py67 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/
Dmox.py542 self._exception = None
570 if expected_method._exception:
571 raise expected_method._exception
736 self._exception = exception
/external/tensorflow/tensorflow/python/keras/utils/
Ddata_utils.py367 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.py173 def _exception(unused_handler): function
209 return _exception(self._handler)
/external/chromium-trace/catapult/devil/devil/utils/
Dtimeout_retry.py117 def AlwaysRetry(_exception): argument
/external/python/cpython3/Lib/
Dasyncore.py97 def _exception(obj): function
162 _exception(obj)
/external/python/cpython3/Lib/unittest/
Dloader.py27 self._exception = exception
34 raise self._exception

12