Searched refs:number_of_exceptions (Results 1 – 3 of 3) sorted by relevance
67 int number_of_exceptions = m_exceptions.size (); // use size() if class becomes non-final in writeInClassFormat() local68 out.writeU2 (number_of_exceptions); in writeInClassFormat()70 for (int i = 0; i < number_of_exceptions; i++) in writeInClassFormat()
118 final int number_of_exceptions = bytes.readU2 (); in ExceptionsAttribute_info() local119 m_exceptions = new DeclaredExceptionTable (number_of_exceptions); in ExceptionsAttribute_info()121 for (int i = 0; i < number_of_exceptions; i++) in ExceptionsAttribute_info()
74 final int number_of_exceptions = input.readUnsignedShort(); in ExceptionTable() local75 exception_index_table = new int[number_of_exceptions]; in ExceptionTable()76 for (int i = 0; i < number_of_exceptions; i++) { in ExceptionTable()