Home
last modified time | relevance | path

Searched refs:constantElementValue (Results 1 – 15 of 15) sorted by relevance

/external/proguard/src/proguard/classfile/editor/
DElementValueAdder.java100 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
104 new ConstantElementValue(constantElementValue.u1tag, in visitConstantElementValue()
105 constantElementValue.u2elementNameIndex == 0 ? 0 : in visitConstantElementValue()
106 … constantAdder.addConstant(clazz, constantElementValue.u2elementNameIndex), in visitConstantElementValue()
107 … constantAdder.addConstant(clazz, constantElementValue.u2constantValueIndex)); in visitConstantElementValue()
109 newConstantElementValue.referencedClass = constantElementValue.referencedClass; in visitConstantElementValue()
110 newConstantElementValue.referencedMethod = constantElementValue.referencedMethod; in visitConstantElementValue()
DUtf8Shrinker.java341 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
343 if (constantElementValue.u2elementNameIndex != 0) in visitConstantElementValue()
345 markCpUtf8Entry(clazz, constantElementValue.u2elementNameIndex); in visitConstantElementValue()
349 if (constantElementValue.u1tag == ClassConstants.ELEMENT_VALUE_STRING_CONSTANT) in visitConstantElementValue()
351 markCpUtf8Entry(clazz, constantElementValue.u2constantValueIndex); in visitConstantElementValue()
DConstantPoolRemapper.java611 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
613 constantElementValue.u2elementNameIndex = in visitConstantElementValue()
614 remapConstantIndex(constantElementValue.u2elementNameIndex); in visitConstantElementValue()
615 constantElementValue.u2constantValueIndex = in visitConstantElementValue()
616 remapConstantIndex(constantElementValue.u2constantValueIndex); in visitConstantElementValue()
DConstantPoolShrinker.java457 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
459 if (constantElementValue.u2elementNameIndex != 0) in visitConstantElementValue()
461 markConstant(clazz, constantElementValue.u2elementNameIndex); in visitConstantElementValue()
464 markConstant(clazz, constantElementValue.u2constantValueIndex); in visitConstantElementValue()
DMemberReferenceFixer.java362 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
364 fixElementValue(clazz, annotation, constantElementValue); in visitConstantElementValue()
DClassReferenceFixer.java422 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
/external/proguard/src/proguard/shrink/
DAnnotationUsageMarker.java144 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
146 if (isReferencedMethodUsed(constantElementValue)) in visitConstantElementValue()
149 usageMarker.markAsUsed(constantElementValue); in visitConstantElementValue()
151 markConstant(clazz, constantElementValue.u2elementNameIndex); in visitConstantElementValue()
152 markConstant(clazz, constantElementValue.u2constantValueIndex); in visitConstantElementValue()
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
DAllElementValueVisitor.java168 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
170 elementValueVisitor.visitConstantElementValue(clazz, annotation, constantElementValue); in visitConstantElementValue()
DElementValueVisitor.java34 … Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue); in visitConstantElementValue() argument
/external/proguard/src/proguard/classfile/visitor/
DClassPrinter.java1082 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
1084 println(visitorInfo(constantElementValue) + in visitConstantElementValue()
1086 (constantElementValue.u2elementNameIndex == 0 ? "(default)" : in visitConstantElementValue()
1087 constantElementValue.getMethodName(clazz)) + " '" + in visitConstantElementValue()
1088 constantElementValue.u1tag + "']"); in visitConstantElementValue()
1091 clazz.constantPoolEntryAccept(constantElementValue.u2constantValueIndex, this); in visitConstantElementValue()
/external/proguard/src/proguard/optimize/peephole/
DTargetClassChanger.java353 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
356 visitAnyElementValue(clazz, annotation, constantElementValue); in visitConstantElementValue()
/external/proguard/src/proguard/classfile/util/
DClassReferenceInitializer.java402 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
404 initializeElementValue(clazz, annotation, constantElementValue); in visitConstantElementValue()
DSimplifiedVisitor.java1086 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
1088 visitAnyElementValue(clazz, annotation, constantElementValue); in visitConstantElementValue()
/external/proguard/src/proguard/classfile/io/
DProgramClassWriter.java839 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
841 dataOutput.writeShort(constantElementValue.u2constantValueIndex); in visitConstantElementValue()
DProgramClassReader.java915 …ConstantElementValue(Clazz clazz, Annotation annotation, ConstantElementValue constantElementValue) in visitConstantElementValue() argument
917 constantElementValue.u2constantValueIndex = dataInput.readUnsignedShort(); in visitConstantElementValue()