Home | History | Annotate | Download | only in attribute

Lines Matching defs:attribute_length

32  *          u4 attribute_length;
33 * u1 info[attribute_length];
40 * string representing the name of the attribute. The value of the attribute_length
43 * and attribute_length items.
110 final long attribute_length = bytes.readU4 ();
117 return new CodeAttribute_info (constants, attribute_name_index, attribute_length, bytes);
121 return new ConstantValueAttribute_info (attribute_name_index, attribute_length, bytes);
125 return new ExceptionsAttribute_info (attribute_name_index, attribute_length, bytes);
129 return new InnerClassesAttribute_info (attribute_name_index, attribute_length, bytes);
133 return new SyntheticAttribute_info (attribute_name_index, attribute_length);
137 return new BridgeAttribute_info (attribute_name_index, attribute_length);
141 return new LineNumberTableAttribute_info (attribute_name_index, attribute_length, bytes);
145 return new SourceFileAttribute_info (attribute_name_index, attribute_length, bytes);
150 return new GenericAttribute_info (attribute_name_index, attribute_length, bytes);
190 protected Attribute_info (final int attribute_name_index, final long attribute_length)
193 m_attribute_length = attribute_length;