/dalvik/dx/src/com/android/dx/cf/attrib/ |
D | AttExceptions.java | 30 private final TypeList exceptions; field in AttExceptions 38 public AttExceptions(TypeList exceptions) { in AttExceptions() argument 42 if (exceptions.isMutable()) { in AttExceptions() 50 this.exceptions = exceptions; in AttExceptions() 55 return 8 + exceptions.size() * 2; in byteLength() 66 return exceptions; in getExceptions()
|
/dalvik/dx/src/com/android/dx/rop/code/ |
D | Rop.java | 65 private final TypeList exceptions; field in Rop 95 TypeList exceptions, int branchingness, boolean isCallLike, in Rop() argument 105 if (exceptions == null) { in Rop() 113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) { in Rop() 121 this.exceptions = exceptions; in Rop() 142 TypeList exceptions, int branchingness, String nickname) { in Rop() argument 143 this(opcode, result, sources, exceptions, branchingness, false, in Rop() 194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions, in Rop() argument 196 this(opcode, result, sources, exceptions, Rop.BRANCH_THROW, false, in Rop() 210 public Rop(int opcode, TypeList sources, TypeList exceptions) { in Rop() argument [all …]
|
/dalvik/dexgen/src/com/android/dexgen/rop/code/ |
D | Rop.java | 65 private final TypeList exceptions; field in Rop 95 TypeList exceptions, int branchingness, boolean isCallLike, in Rop() argument 105 if (exceptions == null) { in Rop() 113 if ((exceptions.size() != 0) && (branchingness != BRANCH_THROW)) { in Rop() 121 this.exceptions = exceptions; in Rop() 142 TypeList exceptions, int branchingness, String nickname) { in Rop() argument 143 this(opcode, result, sources, exceptions, branchingness, false, in Rop() 194 public Rop(int opcode, Type result, TypeList sources, TypeList exceptions, in Rop() argument 196 this(opcode, result, sources, exceptions, Rop.BRANCH_THROW, false, in Rop() 210 public Rop(int opcode, TypeList sources, TypeList exceptions) { in Rop() argument [all …]
|
/dalvik/tests/081-hot-exceptions/ |
D | info.txt | 2 exceptions encountered during trace selection. The existence of exceptions will
|
/dalvik/tests/059-finalizer-throw/ |
D | info.txt | 1 Verify that exceptions thrown from finalizers are ignored.
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
D | AttributeTranslator.java | 70 AttExceptions exceptions = (AttExceptions) in getExceptions() local 73 if (exceptions == null) { in getExceptions() 77 return exceptions.getExceptions(); in getExceptions() 156 TypeList exceptions = getExceptions(method); in getMethodAnnotations() local 158 if (exceptions.size() != 0) { in getMethodAnnotations() 160 AnnotationUtils.makeThrows(exceptions); in getMethodAnnotations()
|
D | CfTranslator.java | 319 TypeList exceptions = AttributeTranslator.getExceptions(one); in processMethods() local 321 new EncodedMethod(meth, accessFlags, code, exceptions); in processMethods()
|
/dalvik/dx/tests/081-dex-throws-list/ |
D | info.txt | 2 throws lists (that is, list of declared exceptions on methods) get
|
/dalvik/tests/064-field-access/ |
D | info.txt | 1 The documentation lists exceptional conditions and the exceptions that
|
/dalvik/vm/reflect/ |
D | Reflect.cpp | 392 ArrayObject* exceptions = NULL; in createConstructorObject() local 423 exceptions = dvmGetMethodThrows(meth); in createConstructorObject() 431 consObj, &unused, meth->clazz, params, exceptions, slot); in createConstructorObject() 442 dvmReleaseTrackedAlloc((Object*) exceptions, NULL); in createConstructorObject() 529 ArrayObject* exceptions = NULL; in dvmCreateReflectMethodObject() local 570 exceptions = dvmGetMethodThrows(meth); in dvmCreateReflectMethodObject() 583 methObj, &unused, meth->clazz, params, exceptions, returnType, in dvmCreateReflectMethodObject() 599 dvmReleaseTrackedAlloc((Object*) exceptions, NULL); in dvmCreateReflectMethodObject()
|
/dalvik/tests/046-reflect/src/ |
D | Main.java | 19 Class[] params, exceptions; in printMethodInfo() local 28 exceptions = meth.getExceptionTypes(); in printMethodInfo() 29 for (i = 0; i < exceptions.length; i++) in printMethodInfo() 30 System.out.println(" Exc " + i + ": " + exceptions[i].getName()); in printMethodInfo()
|
/dalvik/dx/src/com/android/dx/cf/direct/ |
D | StdAttributeFactory.java | 146 return exceptions(cf, offset, length, observer); in parse0() 378 private Attribute exceptions(DirectClassFile cf, int offset, int length, in exceptions() method in StdAttributeFactory
|
/dalvik/vm/oo/ |
D | Class.cpp | 2104 free(meth->exceptions); in freeMethodInnards()
|