Searched refs:constant_pool_count (Results 1 – 7 of 7) sorted by relevance
161 final int constant_pool_count = m_bytes.readU2 (); in constant_pool() local162 …t.println ("constant_pool_count = " + constant_pool_count + " [actual number of entries = " + (con… in constant_pool()166 for (int index = 1; index < constant_pool_count; ++ index) in constant_pool()
73 int constant_pool_count = readUnsignedShort(8); in read() local74 items = (int[])resizeArray(items, constant_pool_count); in read()77 for (int i = 1; i < constant_pool_count; i++) { in read()
145 int constant_pool_count = file.readUnsignedShort(); in processConstantPool() local146 constant_items = new Constant[constant_pool_count]; in processConstantPool()150 System.out.printf("%nConstant pool(%d):%n", constant_pool_count - 1); in processConstantPool()152 for (int i = 1; i < constant_pool_count; i++) { in processConstantPool()
260 int constant_pool_count = in.readUnsignedShort(); in readClass() local261 System.out.println("Constant pool count: " + constant_pool_count); in readClass()264 constant_pool = new Object[constant_pool_count]; in readClass()267 for (int i = 1; i < constant_pool_count; i++) { in readClass()
60 final int constant_pool_count = input.readUnsignedShort(); in ConstantPool() local61 constant_pool = new Constant[constant_pool_count]; in ConstantPool()65 for (int i = 1; i < constant_pool_count; i++) { in ConstantPool()
116 final int constant_pool_count = m_constants.size (); // note: this is not the same as size() in writeInClassFormat() local117 out.writeU2 (constant_pool_count + /* !!! */1); in writeInClassFormat()
1014 u2 constant_pool_count; 1019 cp_info constant_pool[constant_pool_count-1];