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

/external/proguard/src/proguard/classfile/editor/
H A DAttributesEditor.java177 private boolean replaceAttribute(int attributesCount, argument
182 int index = findAttribute(attributesCount,
200 private Attribute[] addAttribute(int attributesCount, argument
205 if (attributes.length <= attributesCount)
208 Attribute[] newAttributes = new Attribute[attributesCount + 1];
211 attributesCount);
216 attributes[attributesCount] = attribute;
226 private int deleteAttribute(int attributesCount, argument
231 int index = findAttribute(attributesCount,
236 return attributesCount;
255 findAttribute(int attributesCount, Attribute[] attributes, String attributeName) argument
[all...]

Completed in 27 milliseconds