/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/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() 56 return 8 + exceptions.size() * 2; in byteLength() 67 return exceptions; in getExceptions()
|
/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() 161 TypeList exceptions = getExceptions(method); in getMethodAnnotations() local 163 if (exceptions.size() != 0) { in getMethodAnnotations() 165 AnnotationUtils.makeThrows(exceptions); in getMethodAnnotations()
|
D | CfTranslator.java | 372 TypeList exceptions = AttributeTranslator.getExceptions(one); in processMethods() local 374 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/dx/src/com/android/dx/cf/direct/ |
D | StdAttributeFactory.java | 156 return exceptions(cf, offset, length, observer); in parse0() 413 private Attribute exceptions(DirectClassFile cf, int offset, int length, in exceptions() method in StdAttributeFactory
|