Home
last modified time | relevance | path

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

12345

/external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/tests/unit/
DTestRunner.py121 except BaseException as e:
129 except BaseException as e:
137 except BaseException as e:
146 except BaseException as e:
153 except BaseException as e:
158 except BaseException as e:
167 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/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.py58 except BaseException as exc:
70 except BaseException:
98 except BaseException:
Dprocess.py199 except BaseException as e:
220 except BaseException:
233 except BaseException as e:
362 except BaseException as e:
/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/webrtc/tools/network_emulator/
Dnetwork_emulator.py19 class NetworkEmulatorError(BaseException):
32 BaseException.__init__(self, fail_msg)
/external/python/cpython3/Lib/test/
Dtest_exceptions.py301 (BaseException, (), {'args' : ()}),
302 (BaseException, (1, ), {'args' : (1,)}),
303 (BaseException, ('foo',),
305 (BaseException, ('foo', 1),
429 e = BaseException().with_traceback(tb)
430 self.assertIsInstance(e, BaseException)
506 self.assertRaises(TypeError, BaseException, a=1)
508 class DerivedException(BaseException):
510 BaseException.__init__(self)
Dtest_baseexception.py26 if issubclass(object_, BaseException):
175 self.catch_fails(BaseException())
Dexception_hierarchy.txt1 BaseException
/external/python/cpython3/Lib/idlelib/
Dcalltip.py110 except BaseException:
136 except BaseException:
/external/python/apitools/apitools/base/py/
Dapp2.py165 except BaseException as e:
190 except BaseException as e:
292 except BaseException as e:
/external/python/cpython2/Lib/idlelib/
DCallTips.py118 except BaseException:
151 except BaseException:
/external/python/cpython3/Lib/
Dcontextlib.py205 except BaseException as exc:
512 except BaseException:
653 except BaseException:
/external/python/cpython3/Lib/idlelib/idle_test/
Dmock_idle.py32 if isinstance(self.result, BaseException):
/external/python/cpython2/Lib/idlelib/idle_test/
Dmock_idle.py29 if isinstance(self.result, BaseException):
/external/python/cpython3/Lib/test/libregrtest/
Druntest_mp.py71 except BaseException as e:
146 except BaseException:
/external/autotest/client/site_tests/platform_PrinterPpds/
Dmultithreaded_processor.py108 except BaseException as exception:
Dfake_printer.py174 except BaseException as e:
/external/grpc-grpc/src/python/grpcio_tests/tests/interop/
Dserver.py61 except BaseException as e:
/external/compiler-rt/test/cfi/
Dlit.cfg36 raise BaseException("Tests unsupported")
/external/libcxx/utils/google-benchmark/tools/gbench/
Dutil.py51 except BaseException:
/external/google-benchmark/tools/gbench/
Dutil.py51 except BaseException:
/external/python/cpython2/Lib/
Dcgitb.py175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):

12345