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

/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
H A DElementValueVisitor.java37 public void visitAnnotationElementValue( Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue); argument
43 // public void visitAnnotationElementValue( Clazz clazz, Field field, Annotation annotation, AnnotationElementValue annotationElementValue);
49 // public void visitAnnotationElementValue( Clazz clazz, Method method, Annotation annotation, AnnotationElementValue annotationElementValue);
H A DAllElementValueVisitor.java181 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
183 elementValueVisitor.visitAnnotationElementValue(clazz, annotation, annotationElementValue);
187 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/classfile/editor/
H A DElementValueAdder.java156 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
160 new AnnotationElementValue(annotationElementValue.u2elementNameIndex == 0 ? 0 :
161 constantAdder.addConstant(clazz, annotationElementValue.u2elementNameIndex),
164 newAnnotationElementValue.referencedClass = annotationElementValue.referencedClass;
165 newAnnotationElementValue.referencedMethod = annotationElementValue.referencedMethod;
167 annotationElementValue.annotationAccept(clazz,
H A DMemberReferenceFixer.java380 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
382 fixElementValue(clazz, annotation, annotationElementValue);
385 annotationElementValue.annotationAccept(clazz, this);
H A DClassReferenceFixer.java414 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
417 annotationElementValue.annotationAccept(clazz, this);
H A DConstantPoolShrinker.java473 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
475 if (annotationElementValue.u2elementNameIndex != 0)
477 markConstant(clazz, annotationElementValue.u2elementNameIndex);
481 annotationElementValue.annotationAccept(clazz, this);
H A DUtf8Shrinker.java359 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
361 if (annotationElementValue.u2elementNameIndex != 0)
363 markCpUtf8Entry(clazz, annotationElementValue.u2elementNameIndex);
367 annotationElementValue.annotationAccept(clazz, this);
H A DConstantPoolRemapper.java620 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
622 annotationElementValue.u2elementNameIndex =
623 remapConstantIndex(annotationElementValue.u2elementNameIndex);
626 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/classfile/visitor/
H A DClassCleaner.java255 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
257 clean(annotationElementValue);
259 annotationElementValue.annotationAccept(clazz, this);
H A DClassPrinter.java947 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
949 println(visitorInfo(annotationElementValue) +
951 (annotationElementValue.u2elementNameIndex == 0 ? "(default)" :
952 clazz.getString(annotationElementValue.u2elementNameIndex)) + "]:");
955 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/shrink/
H A DAnnotationUsageMarker.java196 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
198 if (isReferencedMethodUsed(annotationElementValue))
204 annotationElementValue.annotationAccept(clazz, this);
209 usageMarker.markAsUsed(annotationElementValue);
211 markConstant(clazz, annotationElementValue.u2elementNameIndex);
H A DClassShrinker.java333 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
336 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/classfile/util/
H A DClassReferenceInitializer.java416 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
418 initializeElementValue(clazz, annotation, annotationElementValue);
421 annotationElementValue.annotationAccept(clazz, this);
H A DSimplifiedVisitor.java824 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
826 visitAnyElementValue(clazz, annotation, annotationElementValue);
/external/proguard/src/proguard/optimize/peephole/
H A DTargetClassChanger.java360 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
363 visitAnyElementValue(clazz, annotation, annotationElementValue);
366 annotationElementValue.annotationAccept(clazz, this);
/external/proguard/src/proguard/classfile/io/
H A DProgramClassReader.java772 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
777 annotationElementValue.annotationValue = annotationValue;
H A DProgramClassWriter.java720 public void visitAnnotationElementValue(Clazz clazz, Annotation annotation, AnnotationElementValue annotationElementValue) argument
723 attributeBodyWriter.visitAnnotation(clazz, annotationElementValue.annotationValue);

Completed in 850 milliseconds