Home
last modified time | relevance | path

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

12

/external/ImageMagick/MagickWand/
Doperation.c424 #define _exception (cli_wand->wand.exception) in CLISettingOptionInfo() macro
453 arg1=InterpretImageProperties(_image_info,_image,arg1n,_exception); in CLISettingOptionInfo()
460 arg2=InterpretImageProperties(_image_info,_image,arg2n,_exception); in CLISettingOptionInfo()
484 (void) ParseAffineGeometry(arg1,&_draw_info->affine,_exception); in CLISettingOptionInfo()
494 &_image_info->alpha_color,_exception); in CLISettingOptionInfo()
536 &_image_info->background_color,_exception); in CLISettingOptionInfo()
582 &_image_info->border_color,_exception); in CLISettingOptionInfo()
584 &_draw_info->border_color,_exception); in CLISettingOptionInfo()
589 &_image_info->border_color,_exception); in CLISettingOptionInfo()
591 &_draw_info->border_color,_exception); in CLISettingOptionInfo()
[all …]
/external/python/cpython3/Lib/asyncio/
Dstreams.py353 self._exception = None
367 if self._exception:
368 info.append('e=%r' % self._exception)
376 return self._exception
379 self._exception = exc
519 if self._exception is not None:
520 raise self._exception
608 if self._exception is not None:
609 raise self._exception
656 if self._exception is not None:
[all …]
Dfutures.py130 _exception = None variable in Future
176 exc = self._exception
243 if self._exception is not None:
244 raise self._exception
263 return self._exception
317 self._exception = exception
Dbase_tasks.py39 elif task._exception is not None:
40 tb = task._exception.__traceback__
64 exc = task._exception
Dbase_futures.py59 if future._exception is not None:
60 info.append('exception={!r}'.format(future._exception))
Dtasks.py622 elif fut._exception is not None:
Dbase_events.py177 exc = fut._exception
/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/concurrent/futures/
D_base.py290 self._exception = None
304 if self._exception:
309 self._exception.__class__.__name__)
356 if self._exception:
357 raise self._exception
431 return self._exception
438 return self._exception
502 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/protobuf/python/
Dmox.py542 self._exception = None
570 if expected_method._exception:
571 raise expected_method._exception
736 self._exception = exception
/external/libmojo/third_party/catapult/devil/devil/utils/
Dtimeout_retry.py116 def AlwaysRetry(_exception): argument
/external/chromium-trace/catapult/devil/devil/utils/
Dtimeout_retry.py116 def AlwaysRetry(_exception): argument
/external/tensorflow/tensorflow/python/framework/
Dtest_util.py930 self._exception = None
939 self._exception = e
958 if self._exception is not None:
959 self._testcase.fail("Error in checkedThread: %s" % str(self._exception))
/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/cpython3/Lib/test/
Dtest_concurrent_futures.py30 f._exception = exception
747 f1._exception = OSError()
Dtest_asyncore.py112 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1)
125 asyncore._exception(tr2)
/external/python/futures/
Dtest_futures.py109 f._exception = exception
752 f1._exception = IOError()
/external/python/cpython3/Modules/
D_asynciomodule.c46 PyObject *prefix##_exception; \

12