Searched defs:constant_pool_count (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DConstantPool.java77 private int constant_pool_count; field in class:ConstantPool
99 constant_pool_count = file.readUnsignedShort();
100 constant_pool = new Constant[constant_pool_count];
105 for(int i=1; i < constant_pool_count; i++) {
229 file.writeShort(constant_pool_count);
231 for(int i=1; i < constant_pool_count; i++)
327 return constant_pool_count;
342 constant_pool_count = (constant_pool == null)? 0 : constant_pool.length;
350 for(int i=1; i < constant_pool_count; i++)
366 c.constant_pool = new Constant[constant_pool_count];
[all...]

Completed in 31 milliseconds