Searched refs:exception_table (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DCode.java89 private CodeException[] exception_table; // Table of handled exceptions field in class:Code
126 exception_table = new CodeException[exception_table_length];
129 exception_table[i] = new CodeException(file);
152 * @param exception_table Table of handled exceptions
159 CodeException[] exception_table,
169 setExceptionTable(exception_table);
201 exception_table[i].dump(file);
245 public final CodeException[] getExceptionTable() { return exception_table; }
301 * @param exception_table exception table
303 public final void setExceptionTable(CodeException[] exception_table) { argument
156 Code(int name_index, int length, int max_stack, int max_locals, byte[] code, CodeException[] exception_table, Attribute[] attributes, ConstantPool constant_pool) argument
[all...]
/openjdk7/langtools/test/tools/javac/multicatch/
H A DPos05.java100 firstExceptionTable = ea.exception_table[i];
102 if (ea.exception_table[i].handler_pc != firstExceptionTable.handler_pc ||
103 ea.exception_table[i].start_pc != firstExceptionTable.start_pc ||
104 ea.exception_table[i].end_pc != firstExceptionTable.end_pc) {
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DCode_attribute.java65 exception_table = new Exception_data[exception_table_langth];
67 exception_table[i] = new Exception_data(cr);
143 public final Exception_data[] exception_table; field in class:Code_attribute
H A DClassWriter.java385 out.writeShort(attr.exception_table.length);
386 for (Code_attribute.Exception_data e: attr.exception_table)
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DTryBlockWriter.java85 for (int i = 0; i < attr.exception_table.length; i++) {
86 Exception_data entry = attr.exception_table[i];
H A DCodeWriter.java214 for (int i = 0; i < attr.exception_table.length; i++) {
215 Code_attribute.Exception_data handler = attr.exception_table[i];
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiClassFileReconstituter.cpp131 // JVMSpec| } exception_table[exception_table_length];
194 ExceptionTable exception_table(method());
195 int exception_table_length = exception_table.length();
201 (2+2+2+2) * exception_table_length + // exception_table
213 write_u2(exception_table.start_pc(index));
214 write_u2(exception_table.end_pc(index));
215 write_u2(exception_table.handler_pc(index));
216 write_u2(exception_table.catch_type_index(index));

Completed in 44 milliseconds