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

/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DFieldOrMethod.java71 protected int attributes_count;// No. of attributes field in class:FieldOrMethod
98 attributes_count = file.readUnsignedShort();
99 attributes = new Attribute[attributes_count];
100 for(int i=0; i < attributes_count; i++)
133 file.writeShort(attributes_count);
135 for(int i=0; i < attributes_count; i++)
149 attributes_count = (attributes == null)? 0 : attributes.length;
219 c.attributes = new Attribute[attributes_count];
221 for(int i=0; i < attributes_count; i++)
H A DCode.java90 private int attributes_count; // Attributes of code: LineNumber field in class:Code
134 attributes_count = file.readUnsignedShort();
135 attributes = new Attribute[attributes_count];
136 for(int i=0; i < attributes_count; i++)
203 file.writeShort(attributes_count);
204 for(int i=0; i < attributes_count; i++)
218 for(int i=0; i < attributes_count; i++)
229 for(int i=0; i < attributes_count; i++)
277 for(int i=0; i < attributes_count; i++)
288 attributes_count
[all...]
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassFileParser.cpp904 u2 attributes_count,
913 assert(attributes_count > 0, "length should be greater than 0");
921 while (attributes_count--) {
1122 cfs->guarantee_more(8, CHECK_(nullHandle)); // access_flags, name_index, descriptor_index, attributes_count
1153 u2 attributes_count = cfs->get_u2_fast(); local
1154 if (attributes_count > 0) {
1155 parse_field_attributes(cp, attributes_count, is_static, signature_index,
1831 cfs->guarantee_more(8, CHECK_(nullHandle)); // access_flags, name_index, descriptor_index, attributes_count
2730 cfs->guarantee_more(2, CHECK); // attributes_count
2731 u2 attributes_count local
903 parse_field_attributes(constantPoolHandle cp, u2 attributes_count, bool is_static, u2 signature_index, u2* constantvalue_index_addr, bool* is_synthetic_addr, u2* generic_signature_index_addr, typeArrayHandle* field_annotations, ClassFileParser::FieldAnnotationCollector* parsed_annotations, TRAPS) argument
[all...]

Completed in 58 milliseconds