Searched refs:exception_table_length (Results 1 – 3 of 3) sorted by relevance
73 int exception_table_length = m_exceptions.size (); // use size() if class becomes non-final in writeInClassFormat() local74 out.writeU2 (exception_table_length); in writeInClassFormat()76 for (int i = 0; i < exception_table_length; i++) in writeInClassFormat()
224 final int exception_table_length = bytes.readU2 (); in CodeAttribute_info() local225 …_exceptionHandlerTable = AttributeElementFactory.newExceptionHandlerTable (exception_table_length); in CodeAttribute_info()227 for (int i = 0; i < exception_table_length; ++ i) in CodeAttribute_info()
192 int exception_table_length; // u2 if will be 0, so we will skip the exception_table field in ClassReader.Code_attribute202 exception_table_length = in.readUnsignedShort(); in Code_attribute()217 ", exception_table_length=" + exception_table_length + in toString()