Searched refs:exception_index_table (Results 1 - 4 of 4) sorted by relevance

/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DExceptions_attribute.java42 exception_index_table = new int[number_of_exceptions];
44 exception_index_table[i] = cr.readUnsignedShort();
47 public Exceptions_attribute(ConstantPool constant_pool, int[] exception_index_table) argument
49 this(constant_pool.getUTF8Index(Attribute.Exceptions), exception_index_table);
52 public Exceptions_attribute(int name_index, int[] exception_index_table) { argument
53 super(name_index, 2 + 2 * exception_index_table.length);
54 this.number_of_exceptions = exception_index_table.length;
55 this.exception_index_table = exception_index_table;
59 int exception_index = exception_index_table[inde
68 public final int[] exception_index_table; field in class:Exceptions_attribute
[all...]
H A DClassWriter.java420 out.writeShort(attr.exception_index_table.length);
421 for (int i: attr.exception_index_table)
H A DDependencies.java505 v.addClasses(e.exception_index_table);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DExceptionTable.java77 private int[] exception_index_table; // constant pool field in class:ExceptionTable
91 * @param exception_index_table Table of indices in constant pool
95 int[] exception_index_table,
99 setExceptionIndexTable(exception_index_table);
116 exception_index_table = new int[number_of_exceptions];
119 exception_index_table[i] = file.readUnsignedShort();
144 file.writeShort(exception_index_table[i]);
150 public final int[] getExceptionIndexTable() {return exception_index_table;}
162 names[i] = constant_pool.getConstantString(exception_index_table[i],
169 * @param exception_index_table
94 ExceptionTable(int name_index, int length, int[] exception_index_table, ConstantPool constant_pool) argument
172 setExceptionIndexTable(int[] exception_index_table) argument
[all...]

Completed in 46 milliseconds