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

1 2 3 4

  /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/webrtc/tools/network_emulator/
network_emulator.py 19 class NetworkEmulatorError(BaseException):
32 BaseException.__init__(self, fail_msg)
  /external/autotest/site_utils/autoupdate/
test_image.py 27 class TestImageError(BaseException):
release.py 23 class ReleaseError(BaseException):
  /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/cpython2/Lib/idlelib/
CallTips.py 118 except BaseException:
151 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):
  /external/python/cpython2/Lib/
cgitb.py 175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgitb.py 175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgitb.py 175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 175 if isinstance(evalue, BaseException):
246 if isinstance(evalue, BaseException):

Completed in 1886 milliseconds

1 2 3 4