/external/apache-commons-bcel/src/main/java/org/apache/bcel/classfile/ |
D | ExceptionTable.java | 29 * this class is <em>ExceptionTable</em> for historical reasons; The 37 public final class ExceptionTable extends Attribute { class 46 public ExceptionTable(final ExceptionTable c) { in ExceptionTable() method in ExceptionTable 57 public ExceptionTable(final int name_index, final int length, final int[] exception_index_table, in ExceptionTable() method in ExceptionTable 72 …ExceptionTable(final int name_index, final int length, final DataInput input, final ConstantPool c… in ExceptionTable() method in ExceptionTable 173 final ExceptionTable c = (ExceptionTable) clone(); in copy()
|
D | Method.java | 126 * @return ExceptionTable attribute of method, if any, i.e., list all 129 public final ExceptionTable getExceptionTable() { in getExceptionTable() 131 if (attribute instanceof ExceptionTable) { in getExceptionTable() 132 return (ExceptionTable) attribute; in getExceptionTable() 181 if (!((attribute instanceof Code) || (attribute instanceof ExceptionTable))) { in toString() 185 final ExceptionTable e = getExceptionTable(); in toString()
|
D | Attribute.java | 32 * <em>Exceptiontable</em>, <em>LineNumberTable</em>, 42 * @see ExceptionTable 222 return new ExceptionTable(name_index, length, file, constant_pool); in readAttribute()
|
/external/proguard/src/proguard/classfile/attribute/ |
D | CodeAttribute.java | 40 public ExceptionInfo[] exceptionTable; field in CodeAttribute 62 ExceptionInfo[] exceptionTable, in CodeAttribute() argument 73 this.exceptionTable = exceptionTable; in CodeAttribute() 153 exceptionInfoVisitor.visitExceptionInfo(clazz, method, this, exceptionTable[index]); in exceptionsAccept() 166 ExceptionInfo exceptionInfo = exceptionTable[index]; in exceptionsAccept() 183 ExceptionInfo exceptionInfo = exceptionTable[index]; in exceptionsAccept()
|
/external/javassist/src/main/javassist/bytecode/ |
D | ExceptionTable.java | 43 public class ExceptionTable implements Cloneable { class 52 public ExceptionTable(ConstPool cp) { in ExceptionTable() method in ExceptionTable 57 ExceptionTable(ConstPool cp, DataInputStream in) throws IOException { in ExceptionTable() method in ExceptionTable 79 ExceptionTable r = (ExceptionTable)super.clone(); in clone() 177 public void add(int index, ExceptionTable table, int offset) { in add() 232 public ExceptionTable copy(ConstPool newCp, Map<String,String> classnames) { in copy() 233 ExceptionTable et = new ExceptionTable(newCp); in copy()
|
D | CodeAttribute.java | 46 private ExceptionTable exceptions; 59 ExceptionTable etable) in CodeAttribute() 111 exceptions = new ExceptionTable(cp, in); in CodeAttribute() 298 public ExceptionTable getExceptionTable() { return exceptions; } in getExceptionTable() 354 ExceptionTable etable, CodeAttribute destCa) in copyCode() 451 static byte[] doit(byte[] code, LdcEntry ldc, ExceptionTable etable, in doit()
|
D | CodeIterator.java | 677 public void insert(ExceptionTable et, int offset) { in insert() 731 public void append(ExceptionTable et, int offset) { in append() 732 ExceptionTable table = codeAttr.getExceptionTable(); in append() 817 boolean exclusive, ExceptionTable etable, CodeAttribute ca) in insertGapCore0() 838 boolean exclusive, ExceptionTable etable, in insertGapCore1() 1016 ExceptionTable etable; 1022 Pointers(int cur, int m, int m0, ExceptionTable et, CodeAttribute ca) { in Pointers() 1073 static byte[] changeLdcToLdcW(byte[] code, ExceptionTable etable, in changeLdcToLdcW() 1115 ExceptionTable etable, CodeAttribute ca, Gap newWhere) in insertGapCore0w()
|
/external/proguard/src/proguard/classfile/editor/ |
D | CodeAttributeComposer.java | 79 …private ExceptionInfo[] exceptionTable = new ExceptionInfo[ClassConstants.TYPICAL_EXCEPTION_TABLE_… field in CodeAttributeComposer 335 exceptionTable = in appendException() 336 (ExceptionInfo[])ArrayUtil.add(exceptionTable, in appendException() 390 ExceptionInfo exceptionInfo = exceptionTable[index]; in endCodeFragment() 444 // removeEmptyExceptions(exceptionTable, exceptionTableLength); in visitCodeAttribute() 448 if (codeAttribute.exceptionTable.length < exceptionTableLength) in visitCodeAttribute() 450 codeAttribute.exceptionTable = new ExceptionInfo[exceptionTableLength]; in visitCodeAttribute() 455 System.arraycopy(exceptionTable, 0, codeAttribute.exceptionTable, 0, exceptionTableLength); in visitCodeAttribute() 469 // removeEmptyExceptions(codeAttribute.exceptionTable, in visitCodeAttribute()
|
/external/llvm-project/lldb/test/Shell/Minidump/Windows/Inputs/ |
D | broken-unwind.exe.yaml | 1 # The ExceptionTable RelativeVirtualAddress below points outside of allocated 31 ExceptionTable:
|
D | arm-fp-unwind.exe.yaml | 28 ExceptionTable:
|
/external/javassist/src/main/javassist/expr/ |
D | Handler.java | 27 import javassist.bytecode.ExceptionTable; 38 private ExceptionTable etable; 44 protected Handler(ExceptionTable et, int nth, in Handler()
|
/external/javassist/src/main/javassist/bytecode/stackmap/ |
D | BasicBlock.java | 28 import javassist.bytecode.ExceptionTable; 180 ExceptionTable et) 226 ExceptionTable et) 394 private void addCatchers(BasicBlock[] blocks, ExceptionTable et) in addCatchers()
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
D | SubroutineScanner.java | 26 import javassist.bytecode.ExceptionTable; 52 ExceptionTable exceptions = code.getExceptionTable(); in scan()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/generic/ |
D | MethodGen.java | 33 import org.apache.bcel.classfile.ExceptionTable; 234 } else if (a instanceof ExceptionTable) { in MethodGen() 235 final String[] names = ((ExceptionTable) a).getExceptionNames(); in MethodGen() 548 private ExceptionTable getExceptionTable( final ConstantPoolGen cp ) { in getExceptionTable() 554 return new ExceptionTable(cp.addUtf8("Exceptions"), 2 + 2 * size, ex, cp.getConstantPool()); in getExceptionTable() 692 ExceptionTable et = null; in getMethod() 1106 if (!((a instanceof Code) || (a instanceof ExceptionTable))) { in toString()
|
/external/apache-commons-bcel/src/main/java/org/apache/bcel/util/ |
D | MethodHTML.java | 28 import org.apache.bcel.classfile.ExceptionTable; 142 final int[] exceptions = ((ExceptionTable) attributes[i]).getExceptionIndexTable(); in writeMethod()
|
/external/llvm-project/llvm/test/tools/llvm-objcopy/COFF/Inputs/ |
D | i386-exe.yaml | 28 ExceptionTable:
|
D | x86_64-exe.yaml | 28 ExceptionTable:
|
/external/llvm-project/lldb/test/Shell/ObjectFile/PECOFF/ |
D | basic-info-arm.yaml | 40 ExceptionTable:
|
D | invalid-export-table.yaml | 35 ExceptionTable:
|
D | basic-info-arm64.yaml | 40 ExceptionTable:
|
D | basic-info.yaml | 40 ExceptionTable:
|
D | section-types.yaml | 36 ExceptionTable:
|
D | uuid.yaml | 34 ExceptionTable:
|
D | disassemble-thumb.yaml | 36 ExceptionTable:
|
/external/llvm-project/lldb/test/Shell/Process/Windows/ |
D | launch_failure.yaml | 39 ExceptionTable:
|