/prebuilts/jdk/jdk9/darwin-x86/include/ |
ir.idl | 331 typedefs, exceptions, interfaces, and modules. 358 A ModuleDef can contain constants, typedefs, exceptions, interfaces, 567 attribute ExceptionDefSeq exceptions; 579 ExcDescriptionSeq exceptions; 591 contains constants, typedefs, exceptions, operations, and 635 in ExceptionDefSeq exceptions, 730 in ExceptionDefSeq exceptions,
|
/prebuilts/jdk/jdk9/linux-x86/include/ |
ir.idl | 331 typedefs, exceptions, interfaces, and modules. 358 A ModuleDef can contain constants, typedefs, exceptions, interfaces, 567 attribute ExceptionDefSeq exceptions; 579 ExcDescriptionSeq exceptions; 591 contains constants, typedefs, exceptions, operations, and 635 in ExceptionDefSeq exceptions, 730 in ExceptionDefSeq exceptions,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_pep352.py | 3 import exceptions 14 ["exceptions must derive from BaseException", 45 exc_set = set(x for x in dir(exceptions) if not x.startswith('_')) 84 try: # Some exceptions require arguments; just skip them 147 """Test usage of exceptions"""
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_pep352.py | 3 import exceptions 14 ["exceptions must derive from BaseException", 45 exc_set = set(x for x in dir(exceptions) if not x.startswith('_')) 84 try: # Some exceptions require arguments; just skip them 147 """Test usage of exceptions"""
|
/bionic/libc/bionic/ |
time64.c | 286 Year exceptions; local 291 exceptions = year_diff / 100; 292 exceptions -= year_diff / 400; 294 TRACE3("# year: %lld, exceptions: %lld, year_diff: %lld\n", 295 year, exceptions, year_diff); 297 return exceptions * 16;
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
LambdaDesugaring.java | 159 int access, String name, String desc, String signature, String[] exceptions) { 193 MethodVisitor dest = super.visitMethod(access, name, desc, signature, exceptions); 195 ? new InvokedynamicRewriter(dest, access, name, desc, signature, exceptions) 383 String[] exceptions) { 384 super(ASM6, access, name, desc, signature, exceptions);
|
/prebuilts/misc/common/asm/ |
asm-commons-6.0.jar | |
/prebuilts/misc/common/robolectric/3.5.1/lib/ |
asm-commons-6.0.jar | |
/prebuilts/misc/common/robolectric/3.6.1/lib/ |
asm-commons-6.0.jar | |
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/6.0/ |
asm-commons-6.0.jar | |
/prebuilts/tools/common/m2/repository/org/ow2/asm/asm-commons/6.1.1/ |
asm-commons-6.1.1.jar | |
/external/annotation-tools/asmx/src/org/objectweb/asm/ |
MethodWriter.java | 96 * Number of exceptions that can be thrown by this method. 101 * The exceptions that can be thrown by this method. More precisely, this 105 int[] exceptions; field in class:MethodWriter 540 * @param exceptions the internal names of the method's exceptions. May be 551 final String[] exceptions, 566 if (exceptions != null && exceptions.length > 0) { 567 exceptionCount = exceptions.length; 568 this.exceptions = new int[exceptionCount] [all...] |
/external/autotest/scheduler/ |
rdb.py | 12 from django.core import exceptions as django_exceptions 113 a list of exceptions. 153 def _record_exceptions(self, request, exceptions): 154 """Record a list of exceptions for a request. 156 @param request: The request for which the exceptions were hit. 157 @param exceptions: The exceptions hit while processing the request. 159 rdb_exceptions = [rdb_utils.RDBException(ex) for ex in exceptions]
|
/external/mockito/src/test/java/org/mockitousage/verification/ |
VerificationInOrderWithCallsTest.java | 12 import org.mockito.exceptions.base.MockitoException; 13 import org.mockito.exceptions.verification.NoInteractionsWanted; 14 import org.mockito.exceptions.verification.VerificationInOrderFailure;
|
/external/python/cpython3/Lib/asyncio/ |
base_events.py | 52 # Exceptions which must not call the exception handler in fatal error 740 exceptions = [] 756 exceptions.append(exc) 767 exceptions.append(exc) 775 if len(exceptions) == 1: 776 raise exceptions[0] 779 model = str(exceptions[0]) 780 if all(str(exc) == model for exc in exceptions): 781 raise exceptions[0] 784 raise OSError('Multiple exceptions: {}'.format [all...] |
/external/python/cpython3/Lib/test/ |
test_funcattrs.py | 29 def cannot_set_attr(self, obj, name, value, exceptions): 32 except exceptions: 38 except exceptions:
|
/external/turbine/java/com/google/turbine/lower/ |
LowerSignature.java | 155 for (Type e : method.exceptions()) { 162 for (Type e : method.exceptions()) { 194 for (Type t : m.exceptions()) {
|
/frameworks/base/tools/locked_region_code_injection/src/lockedregioncodeinjection/ |
LockFindingClassVisitor.java | 59 String[] exceptions) { 61 MethodNode mn = new TryCatchBlockSorter(null, access, name, desc, signature, exceptions); 62 MethodVisitor chain = super.visitMethod(access, name, desc, signature, exceptions);
|
/prebuilts/tools/common/m2/repository/net/orfjackal/retrolambda/retrolambda/2.0.6/ |
retrolambda-2.0.6.jar | |
/development/tools/mkstubs/src/com/android/mkstubs/stubber/ |
MethodStubber.java | 39 int access, String name, String desc, String signature, String[] exceptions) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_exceptions.py | 1 # Python test set -- part 5, built-in exceptions
17 # Reloading the built-in exceptions module failed prior to Py2.2, while it
21 import exceptions
22 reload(exceptions)
24 self.fail("reloading exceptions: %s" % e)
287 self.assertEqual(type(e).__module__, 'exceptions')
489 """Check same msg for built-in exceptions"""
490 # These exceptions implement a __str__ method that uses the args
493 exceptions = [
502 for exception in exceptions: [all...] |
/external/annotation-tools/asmx/src/org/objectweb/asm/commons/ |
EmptyVisitor.java | 113 String[] exceptions)
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ThreadReference/ |
SuspendTest.java | 28 import org.apache.harmony.jpda.tests.framework.jdwp.exceptions.*;
|
/external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/share/ |
JDWPInvokeMethodSuspendedTwiceTestCase.java | 25 import org.apache.harmony.jpda.tests.framework.jdwp.exceptions.TimeoutException;
|
/external/autotest/client/site_tests/cellular_GobiSwitchCarrier/ |
cellular_GobiSwitchCarrier.py | 36 except dbus.exceptions.DBusException, e:
|