/external/llvm-project/llvm/utils/lit/tests/unit/ |
D | TestRunner.py | 175 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/ |
D | test_exceptions.py | 212 (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 …]
|
D | exception_hierarchy.txt | 1 BaseException
|
/external/python/cpython3/Lib/asyncio/ |
D | selector_events.py | 219 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__.py | 41 except BaseException as ex: 52 except BaseException as exc: 61 except BaseException:
|
D | transports.py | 281 except BaseException as exc: 297 except BaseException as exc:
|
D | exceptions.py | 9 class CancelledError(BaseException):
|
D | sslproto.py | 531 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/ |
D | eh.cpp | 453 class BaseException { class 457 BaseException() {}; in BaseException() function in test17::BaseException 460 class DerivedException: public BaseException {
|
/external/clang/test/CodeGenCXX/ |
D | eh.cpp | 452 class BaseException { class 456 BaseException() {}; in BaseException() function in test17::BaseException 459 class DerivedException: public BaseException {
|
/external/python/cpython3/Lib/concurrent/futures/ |
D | thread.py | 53 except BaseException as exc: 67 except BaseException: 102 except BaseException:
|
D | process.py | 210 except BaseException as e: 231 except BaseException: 244 except BaseException as e: 386 except BaseException as e:
|
/external/python/pybind11/pybind11/ |
D | setup_helpers.pyi | 58 exc_type: Optional[Type[BaseException]], 59 exc_value: Optional[BaseException],
|
/external/webrtc/tools_webrtc/network_emulator/ |
D | network_emulator.py | 19 class NetworkEmulatorError(BaseException): 32 BaseException.__init__(self, fail_msg)
|
/external/python/cpython3/Lib/test/ |
D | audit-tests.py | 75 except BaseException as ex: 100 with assertRaises(BaseException): 102 raise_on_events="sys.addaudithook", exc_type=BaseException
|
D | test_exceptions.py | 361 (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:
|
D | test_baseexception.py | 26 if issubclass(object_, BaseException): 175 self.catch_fails(BaseException())
|
D | exception_hierarchy.txt | 1 BaseException
|
/external/python/cpython2/Doc/library/ |
D | exceptions.rst | 33 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/ |
D | calltip.py | 141 except BaseException: 166 except BaseException: # Buggy user object could raise anything.
|
/external/python/cpython2/Lib/idlelib/ |
D | CallTips.py | 118 except BaseException: 151 except BaseException:
|
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | mock_idle.py | 29 if isinstance(self.result, BaseException):
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | mock_idle.py | 32 if isinstance(self.result, BaseException):
|
/external/autotest/client/site_tests/platform_PrinterPpds/ |
D | multithreaded_processor.py | 108 except BaseException as exception:
|
/external/python/cpython3/Lib/ |
D | contextlib.py | 210 except BaseException as exc: 514 except BaseException: 652 except BaseException:
|