Home
last modified time | relevance | path

Searched refs:BaseException (Results 1 – 25 of 127) sorted by relevance

123456

/external/llvm-project/llvm/utils/lit/tests/unit/
DTestRunner.py175 except BaseException as e:
183 except BaseException as e:
191 except BaseException as e:
200 except BaseException as e:
207 except BaseException as e:
212 except BaseException as e:
221 except BaseException as e:
/external/python/cpython2/Lib/test/
Dtest_exceptions.py212 (BaseException, (), {'message' : '', 'args' : ()}),
213 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
214 (BaseException, ('foo',),
216 (BaseException, ('foo', 1),
288 except BaseException, e:
316 exc = BaseException("foo")
325 exc = BaseException("foo")
352 exc = BaseException(*args)
359 self.assertRaises(TypeError, BaseException, a=1)
361 class DerivedException(BaseException):
[all …]
Dexception_hierarchy.txt1 BaseException
/external/python/cpython3/Lib/asyncio/
Dselector_events.py219 except BaseException:
226 except BaseException as exc:
390 except BaseException as exc:
428 except BaseException as exc:
475 except BaseException as exc:
520 except BaseException as exc:
543 except BaseException as exc:
575 except BaseException as exc:
825 except BaseException as exc:
836 except BaseException as exc:
[all …]
D__main__.py41 except BaseException as ex:
52 except BaseException as exc:
61 except BaseException:
Dtransports.py281 except BaseException as exc:
297 except BaseException as exc:
Dexceptions.py9 class CancelledError(BaseException):
Dsslproto.py531 except BaseException as e:
548 except BaseException as ex:
636 except BaseException as exc:
701 except BaseException as exc:
/external/llvm-project/clang/test/CodeGenCXX/
Deh.cpp453 class BaseException { class
457 BaseException() {}; in BaseException() function in test17::BaseException
460 class DerivedException: public BaseException {
/external/clang/test/CodeGenCXX/
Deh.cpp452 class BaseException { class
456 BaseException() {}; in BaseException() function in test17::BaseException
459 class DerivedException: public BaseException {
/external/python/cpython3/Lib/concurrent/futures/
Dthread.py53 except BaseException as exc:
67 except BaseException:
102 except BaseException:
Dprocess.py210 except BaseException as e:
231 except BaseException:
244 except BaseException as e:
386 except BaseException as e:
/external/python/pybind11/pybind11/
Dsetup_helpers.pyi58 exc_type: Optional[Type[BaseException]],
59 exc_value: Optional[BaseException],
/external/webrtc/tools_webrtc/network_emulator/
Dnetwork_emulator.py19 class NetworkEmulatorError(BaseException):
32 BaseException.__init__(self, fail_msg)
/external/python/cpython3/Lib/test/
Daudit-tests.py75 except BaseException as ex:
100 with assertRaises(BaseException):
102 raise_on_events="sys.addaudithook", exc_type=BaseException
Dtest_exceptions.py361 (BaseException, (), {'args' : ()}),
362 (BaseException, (1, ), {'args' : (1,)}),
363 (BaseException, ('foo',),
365 (BaseException, ('foo', 1),
489 e = BaseException().with_traceback(tb)
490 self.assertIsInstance(e, BaseException)
566 self.assertRaises(TypeError, BaseException, a=1)
568 class DerivedException(BaseException):
570 BaseException.__init__(self)
1324 except BaseException as e:
Dtest_baseexception.py26 if issubclass(object_, BaseException):
175 self.catch_fails(BaseException())
Dexception_hierarchy.txt1 BaseException
/external/python/cpython2/Doc/library/
Dexceptions.rst33 root class :exc:`BaseException`, the associated value is present as the
43 class or one of its subclasses, and not from :exc:`BaseException`. More
49 .. exception:: BaseException
73 Changed to inherit from :exc:`BaseException`.
162 directly inherits from :exc:`BaseException` instead of :exc:`StandardError`
168 Changed to inherit from :exc:`BaseException`.
211 :exc:`BaseException` so as to not be accidentally caught by code that catches
215 Changed to inherit from :exc:`BaseException`.
350 directly from :exc:`BaseException` and not :exc:`StandardError`, since it is not
360 The exception inherits from :exc:`BaseException` instead of :exc:`StandardError`
[all …]
/external/python/cpython3/Lib/idlelib/
Dcalltip.py141 except BaseException:
166 except BaseException: # Buggy user object could raise anything.
/external/python/cpython2/Lib/idlelib/
DCallTips.py118 except BaseException:
151 except BaseException:
/external/python/cpython2/Lib/idlelib/idle_test/
Dmock_idle.py29 if isinstance(self.result, BaseException):
/external/python/cpython3/Lib/idlelib/idle_test/
Dmock_idle.py32 if isinstance(self.result, BaseException):
/external/autotest/client/site_tests/platform_PrinterPpds/
Dmultithreaded_processor.py108 except BaseException as exception:
/external/python/cpython3/Lib/
Dcontextlib.py210 except BaseException as exc:
514 except BaseException:
652 except BaseException:

123456