Searched refs:exception_index_table (Results 1 – 1 of 1) sorted by relevance
39 private int[] exception_index_table; // constant pool field in ExceptionTable57 public ExceptionTable(final int name_index, final int length, final int[] exception_index_table, in ExceptionTable() argument60 … this.exception_index_table = exception_index_table != null ? exception_index_table : new int[0]; in ExceptionTable()75 exception_index_table = new int[number_of_exceptions]; in ExceptionTable()77 exception_index_table[i] = input.readUnsignedShort(); in ExceptionTable()104 file.writeShort(exception_index_table.length); in dump()105 for (final int index : exception_index_table) { in dump()115 return exception_index_table; in getExceptionIndexTable()123 return exception_index_table == null ? 0 : exception_index_table.length; in getNumberOfExceptions()131 final String[] names = new String[exception_index_table.length]; in getExceptionNames()[all …]