Searched refs:u2annotationsCount (Results 1 - 9 of 9) sorted by relevance

/external/proguard/src/proguard/classfile/attribute/annotation/
H A DAnnotationsAttribute.java34 public int u2annotationsCount; field in class:AnnotationsAttribute
50 int u2annotationsCount,
55 this.u2annotationsCount = u2annotationsCount;
65 for (int index = 0; index < u2annotationsCount; index++)
79 for (int index = 0; index < u2annotationsCount; index++)
93 for (int index = 0; index < u2annotationsCount; index++)
49 AnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
H A DRuntimeInvisibleAnnotationsAttribute.java45 int u2annotationsCount,
48 super(u2attributeNameIndex, u2annotationsCount, annotations);
44 RuntimeInvisibleAnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
H A DRuntimeVisibleAnnotationsAttribute.java45 int u2annotationsCount,
48 super(u2attributeNameIndex, u2annotationsCount, annotations);
44 RuntimeVisibleAnnotationsAttribute(int u2attributeNameIndex, int u2annotationsCount, Annotation[] annotations) argument
/external/proguard/src/proguard/classfile/editor/
H A DAnnotationsAttributeEditor.java51 int annotationsCount = targetAnnotationsAttribute.u2annotationsCount;
65 annotations[targetAnnotationsAttribute.u2annotationsCount++] = annotation;
H A DAttributeAdder.java371 new Annotation[runtimeVisibleAnnotationsAttribute.u2annotationsCount]);
389 new Annotation[runtimeInvisibleAnnotationsAttribute.u2annotationsCount]);
/external/proguard/src/proguard/shrink/
H A DClassShrinker.java182 annotationsAttribute.u2annotationsCount =
184 annotationsAttribute.u2annotationsCount);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java470 annotationsAttribute.u2annotationsCount = dataInput.readUnsignedShort();
472 annotationsAttribute.annotations = new Annotation[annotationsAttribute.u2annotationsCount];
473 for (int index = 0; index < annotationsAttribute.u2annotationsCount; index++)
504 int u2annotationsCount = dataInput.readUnsignedShort();
506 Annotation[] annotations = new Annotation[u2annotationsCount];
508 for (int index = 0; index < u2annotationsCount; index++)
515 parameterAnnotationsAttribute.u2parameterAnnotationsCount[parameterIndex] = u2annotationsCount;
H A DProgramClassWriter.java420 dataOutput.writeShort(annotationsAttribute.u2annotationsCount);
434 int u2annotationsCount = parameterAnnotationsAttribute.u2parameterAnnotationsCount[parameterIndex];
437 dataOutput.writeShort(u2annotationsCount);
439 for (int index = 0; index < u2annotationsCount; index++)
/external/proguard/lib/
H A Dproguard.jarMETA-INF/ META-INF/MANIFEST.MF proguard/evaluation/Stack.class Stack.java package proguard ...

Completed in 167 milliseconds