HomeSort by relevance Sort by last modified time
    Searched refs:BaseException (Results 1 - 25 of 126) sorted by null

1 2 3 4 5 6

  /art/test/044-proxy/src/
WrappedThrow.java 117 } catch (BaseException se) {
125 class BaseException extends Exception {}
126 class SubException extends BaseException {}
132 public void throwFunky2() throws BaseException,
135 public void throwException() throws BaseException;
136 public void throwBase() throws BaseException;
137 public void throwSub() throws BaseException;
138 public void throwSubSub() throws BaseException;
140 public void bothThrowBase() throws BaseException, SubException, SubSubException;
152 public void bothThrowBase() throws SubException, BaseException, SubSubException
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/Xml/
XmlRoutines.py 138 except BaseException:
156 except BaseException:
170 except BaseException:
197 except BaseException:
211 except BaseException:
227 except BaseException, XExcept:
  /external/clang/test/CodeGenCXX/
eh.cpp 452 class BaseException {
456 BaseException() {};
459 class DerivedException: public BaseException {
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
PackageFile.py 54 except BaseException, Xstr:
109 except BaseException, Xstr:
122 except BaseException, Xstr:
129 except BaseException, Xstr:
231 except BaseException, Xstr:
245 except BaseException, Xstr:
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_exceptions.py 207 (BaseException, (), {'message' : '', 'args' : ()}),
208 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
209 (BaseException, ('foo',),
211 (BaseException, ('foo', 1),
283 except BaseException, e:
309 # Accessing BaseException.message and relying on its value set by
310 # BaseException.__init__ triggers a deprecation warning.
311 exc = BaseException("foo")
312 with check_warnings(("BaseException.message has been deprecated "
318 # Accessing BaseException.message after explicitly setting a value
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_exceptions.py 207 (BaseException, (), {'message' : '', 'args' : ()}),
208 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
209 (BaseException, ('foo',),
211 (BaseException, ('foo', 1),
283 except BaseException, e:
309 # Accessing BaseException.message and relying on its value set by
310 # BaseException.__init__ triggers a deprecation warning.
311 exc = BaseException("foo")
312 with check_warnings(("BaseException.message has been deprecated "
318 # Accessing BaseException.message after explicitly setting a valu
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_exceptions.py 207 (BaseException, (), {'message' : '', 'args' : ()}),
208 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
209 (BaseException, ('foo',),
211 (BaseException, ('foo', 1),
283 except BaseException, e:
309 # Accessing BaseException.message and relying on its value set by
310 # BaseException.__init__ triggers a deprecation warning.
311 exc = BaseException("foo")
312 with check_warnings(("BaseException.message has been deprecated "
318 # Accessing BaseException.message after explicitly setting a valu
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 207 (BaseException, (), {'message' : '', 'args' : ()}),
208 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
209 (BaseException, ('foo',),
211 (BaseException, ('foo', 1),
283 except BaseException, e:
309 # Accessing BaseException.message and relying on its value set by
310 # BaseException.__init__ triggers a deprecation warning.
311 exc = BaseException("foo")
312 with check_warnings(("BaseException.message has been deprecated "
318 # Accessing BaseException.message after explicitly setting a valu
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_exceptions.py 207 (BaseException, (), {'message' : '', 'args' : ()}),
208 (BaseException, (1, ), {'message' : 1, 'args' : (1,)}),
209 (BaseException, ('foo',),
211 (BaseException, ('foo', 1),
283 except BaseException, e:
309 # Accessing BaseException.message and relying on its value set by
310 # BaseException.__init__ triggers a deprecation warning.
311 exc = BaseException("foo")
312 with check_warnings(("BaseException.message has been deprecated "
318 # Accessing BaseException.message after explicitly setting a valu
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
InfAsBuiltProcess.py 211 except BaseException:
215 except BaseException:
255 except BaseException:
282 except BaseException:
DecParserMisc.py 155 except BaseException:
290 except BaseException:
  /external/python/cpython2/Lib/idlelib/idle_test/
mock_idle.py 29 if isinstance(self.result, BaseException):
  /external/python/cpython3/Lib/idlelib/idle_test/
mock_idle.py 29 if isinstance(self.result, BaseException):
  /external/python/cpython3/Lib/concurrent/futures/
thread.py 56 except BaseException as e:
80 except BaseException:
  /external/python/cpython3/Lib/idlelib/
calltips.py 114 except BaseException:
139 except BaseException:
  /external/webrtc/tools/network_emulator/
network_emulator.py 19 class NetworkEmulatorError(BaseException):
32 BaseException.__init__(self, fail_msg)
  /external/python/cpython2/Lib/test/
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:
314 # Accessing BaseException.message and relying on its value set by
315 # BaseException.__init__ triggers a deprecation warning.
316 exc = BaseException("foo")
317 with check_warnings(("BaseException.message has been deprecated "
323 # Accessing BaseException.message after explicitly setting a valu
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
InfSectionParser.py 39 except BaseException:
  /external/python/cpython3/Lib/test/
signalinterproctester.py 38 except BaseException as exc:
test_baseexception.py 26 if issubclass(object_, BaseException):
153 # BaseException; the ability was not possible until BaseException's
166 # Tryinng to catch an object that does not inherit from BaseException
174 # Catching an instance of a BaseException subclass won't work.
175 self.catch_fails(BaseException())
test_exceptions.py 272 (BaseException, (), {'args' : ()}),
273 (BaseException, (1, ), {'args' : (1,)}),
274 (BaseException, ('foo',),
276 (BaseException, ('foo', 1),
400 e = BaseException().with_traceback(tb)
401 self.assertIsInstance(e, BaseException)
477 self.assertRaises(TypeError, BaseException, a=1)
479 class DerivedException(BaseException):
481 BaseException.__init__(self)
    [all...]
  /external/python/cpython2/Lib/idlelib/
CallTips.py 118 except BaseException:
151 except BaseException:
  /external/python/cpython3/Lib/test/libregrtest/
runtest_mp.py 74 except BaseException as e:
148 except BaseException:
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
Misc.py 115 except BaseException:
128 except BaseException:
170 except BaseException:
178 except BaseException:
963 except BaseException:
970 except BaseException:
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
cgitb.py 175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):

Completed in 394 milliseconds

1 2 3 4 5 6