Home
last modified time | relevance | path

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

12

/external/ImageMagick/MagickWand/
Doperation.c425 #define _exception (cli_wand->wand.exception) in CLISettingOptionInfo() macro
454 arg1=InterpretImageProperties(_image_info,_image,arg1n,_exception); in CLISettingOptionInfo()
461 arg2=InterpretImageProperties(_image_info,_image,arg2n,_exception); in CLISettingOptionInfo()
485 (void) ParseAffineGeometry(arg1,&_draw_info->affine,_exception); in CLISettingOptionInfo()
529 &_image_info->background_color,_exception); in CLISettingOptionInfo()
575 &_image_info->border_color,_exception); in CLISettingOptionInfo()
577 &_draw_info->border_color,_exception); in CLISettingOptionInfo()
582 &_image_info->border_color,_exception); in CLISettingOptionInfo()
584 &_draw_info->border_color,_exception); in CLISettingOptionInfo()
696 (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.py368 self._exception = None
382 if self._exception:
391 return self._exception
394 self._exception = exc
532 if self._exception is not None:
533 raise self._exception
620 if self._exception is not None:
621 raise self._exception
667 if self._exception is not None:
668 raise self._exception
Dfutures.py54 _exception = None variable in Future
98 exc = self._exception
177 if self._exception is not None:
178 raise self._exception
194 return self._exception
252 self._exception = exception
Dbase_tasks.py39 elif task._exception is not None:
40 tb = task._exception.__traceback__
65 exc = task._exception
Dbase_futures.py59 if future._exception is not None:
/external/python/cpython3/Lib/concurrent/futures/
D_base.py317 self._exception = None
331 if self._exception:
336 self._exception.__class__.__name__)
383 if self._exception:
384 raise self._exception
458 return self._exception
465 return self._exception
529 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/autotest/venv/lucifer/
Deventlib_unittest.py93 self._exception = exception
96 raise self._exception
/external/python/cpython3/Lib/xml/sax/
D_exceptions.py23 self._exception = exception
32 return self._exception
/external/python/cpython2/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/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/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/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.c115 static void _exception(int signr, struct pt_regs *regs) in _exception() function
258 _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/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/unittest/
Dloader.py27 self._exception = exception
34 raise self._exception
/external/python/cpython3/Lib/
Dasyncore.py97 def _exception(obj): function
162 _exception(obj)

12