Home
last modified time | relevance | path

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

12

/third_party/boost/boost/outcome/
Dsuccess_failure.hpp97 exception_type _exception; member
118 , _exception(static_cast<V &&>(v)) in failure_type()
125 , _exception() in failure_type()
132 , _exception(static_cast<U &&>(u)) in failure_type()
144 constexpr exception_type &exception() & { return _exception; } in exception()
145 constexpr const exception_type &exception() const & { return _exception; } in exception()
146 constexpr exception_type &&exception() && { return static_cast<exception_type &&>(_exception); } in exception()
147 … const exception_type &&exception() const && { return static_cast<exception_type &&>(_exception); } in exception()
182 exception_type _exception; member
194 : _exception(static_cast<V &&>(v)) // NOLINT in failure_type()
[all …]
/third_party/python/Lib/asyncio/
Dstreams.py394 self._exception = None
411 if self._exception:
420 return self._exception
423 self._exception = exc
561 if self._exception is not None:
562 raise self._exception
649 if self._exception is not None:
650 raise self._exception
696 if self._exception is not None:
697 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:
/third_party/python/Lib/concurrent/futures/
D_base.py323 self._exception = None
337 if self._exception:
342 self._exception.__class__.__name__)
389 if self._exception:
391 raise self._exception
475 return self._exception
482 return self._exception
550 self._exception = exception
/third_party/python/Lib/xml/sax/
D_exceptions.py23 self._exception = exception
32 return self._exception
/third_party/grpc/src/python/grpcio_tests/tests/unit/
D_metadata_code_details_test.py68 self._exception = False
84 if self._exception:
103 if self._exception:
121 if self._exception:
143 if self._exception:
160 self._exception = True
/third_party/grpc/src/python/grpcio/grpc/
D_interceptor.py92 self._exception = exception
126 raise self._exception
129 return self._exception
144 raise self._exception
/third_party/boost/libs/outcome/doc/src/content/reference/policies/base/
Dexception.md2 title = "`static auto &&_exception(Impl &&) noexcept`"
/third_party/protobuf/python/
Dmox.py542 self._exception = None
570 if expected_method._exception:
571 raise expected_method._exception
736 self._exception = exception
/third_party/grpc/src/python/grpcio_testing/grpc_testing/_channel/
D_invocation.py173 def _exception(unused_handler): function
209 return _exception(self._handler)
/third_party/boost/boost/outcome/policy/
Dbase.hpp65 …ass P, class NoValuePolicy, class Impl> static inline constexpr auto &&_exception(Impl &&self) noe…
/third_party/boost/boost/outcome/experimental/
Dstatus_outcome.hpp92 …:_rethrow_exception<trait::is_exception_ptr_available<E>::value>(base::_exception<T, status_code<D… in wide_value_check()
/third_party/python/Lib/
Dasyncore.py104 def _exception(obj): function
169 _exception(obj)
/third_party/python/Lib/unittest/
Dloader.py27 self._exception = exception
34 raise self._exception
/third_party/python/Lib/test/
Dtest_asyncore.py116 self.assertRaises(asyncore.ExitNow, asyncore._exception, tr1)
129 asyncore._exception(tr2)
Dtest_concurrent_futures.py38 f._exception = exception
1501 f1._exception = OSError()
/third_party/python/Doc/library/
Dwinreg.rst17 .. _exception-changed:
/third_party/python/Modules/
D_asynciomodule.c65 PyObject *prefix##_exception; \
/third_party/flutter/flutter/packages/flutter/lib/src/foundation/
Ddiagnostics.dart2672 Object _exception;
2679 return _exception;
2691 _exception = exception;
/third_party/node/doc/changelogs/
DCHANGELOG_V8.md1078 …ithub.com/nodejs/node/commit/3a6b7e610d)] - **n-api**: add napi\_fatal\_exception (Mathias Buus) […
1128 …/nodejs/node/commit/5b1b74c5a5)] - **test**: refactor addons-napi/test\_exception/test.js (Rich Tr…
DCHANGELOG_V10.md1173 …/node/commit/644a9d6919)] - **test**: fix arguments order in napi test\_exception (kanishk30) [#24…
2153 …/nodejs/node/commit/c3c5141f68)] - **src**: remove abort\_on\_uncaught\_exception node.cc (Daniel …
DCHANGELOG_V9.md295 …de/commit/29a04b7ed6)] - **(SEMVER-MINOR)** **n-api**: add napi\_fatal\_exception (Mathias Buus) […
DCHANGELOG_V6.md343 …ithub.com/nodejs/node/commit/49cd4fad89)] - **n-api**: add napi\_fatal\_exception (Mathias Buus) […
439 …/nodejs/node/commit/eceb70b584)] - **test**: refactor addons-napi/test\_exception/test.js (Rich Tr…

12