Home
last modified time | relevance | path

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

12

/external/ImageMagick/MagickWand/
Doperation.c444 #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.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
98 exc = self._exception
200 if self._exception is not None:
201 raise self._exception
218 return self._exception
276 self._exception = exception
Dbase_tasks.py48 elif task._exception is not None:
49 tb = task._exception.__traceback__
74 exc = task._exception
Dbase_futures.py60 if future._exception is not None:
/external/python/cpython3/Lib/concurrent/futures/
D_base.py322 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/
Ddhcp_test_server.py90 self._exception = None
177 self._exception = None
186 if self._exception:
187 raise self._exception
307 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/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 the [docu…
/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/tensorflow/tensorflow/python/keras/utils/
Ddata_utils.py378 self._exception = None
388 if self._exception:
389 raise self._exception # pylint: disable=raising-bad-type
394 self._exception = e
/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.py115 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)
/external/python/cpython2/Lib/
Dasyncore.py97 def _exception(obj): function
168 _exception(obj)
/external/python/cpython2/Lib/test/
Dtest_asyncore.py99 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1)
112 asyncore._exception(tr2)
/external/python/futures/
Dtest_futures.py109 f._exception = exception
752 f1._exception = IOError()
/external/python/cpython3/Lib/test/
Dtest_asyncore.py109 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1)
122 asyncore._exception(tr2)
Dtest_concurrent_futures.py38 f._exception = exception
1458 f1._exception = OSError()
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py2423 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))

12