OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:constantelementvalue
(Results
1 - 16
of
16
) sorted by null
/external/proguard/src/proguard/classfile/attribute/annotation/
ConstantElementValue.java
31
public class
ConstantElementValue
extends ElementValue
38
* Creates an uninitialized
ConstantElementValue
.
40
public
ConstantElementValue
(int u1tag)
47
* Creates an initialized
ConstantElementValue
.
49
public
ConstantElementValue
(int u1tag,
/external/proguard/src/proguard/classfile/attribute/annotation/visitor/
ElementValueVisitor.java
34
public void visitConstantElementValue( Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
);
40
// public void visitConstantElementValue( Clazz clazz, Field field, Annotation annotation,
ConstantElementValue
constantElementValue
);
46
// public void visitConstantElementValue( Clazz clazz, Method method, Annotation annotation,
ConstantElementValue
constantElementValue
);
/external/proguard/src/proguard/classfile/editor/
ElementValueAdder.java
100
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
103
ConstantElementValue
newConstantElementValue =
104
new
ConstantElementValue
(
constantElementValue
.u1tag,
105
constantElementValue
.u2elementNameIndex == 0 ? 0 :
106
constantAdder.addConstant(clazz,
constantElementValue
.u2elementNameIndex),
107
constantAdder.addConstant(clazz,
constantElementValue
.u2constantValueIndex));
109
newConstantElementValue.referencedClass =
constantElementValue
.referencedClass;
110
newConstantElementValue.referencedMethod =
constantElementValue
.referencedMethod
[
all
...]
ConstantPoolRemapper.java
546
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
548
constantElementValue
.u2elementNameIndex =
549
remapConstantIndex(
constantElementValue
.u2elementNameIndex);
550
constantElementValue
.u2constantValueIndex =
551
remapConstantIndex(
constantElementValue
.u2constantValueIndex);
MemberReferenceFixer.java
367
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
369
fixElementValue(clazz, annotation,
constantElementValue
);
ClassReferenceFixer.java
377
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
/external/proguard/src/proguard/obfuscate/
Utf8UsageMarker.java
301
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
303
if (
constantElementValue
.u2elementNameIndex != 0)
305
markCpUtf8Entry(clazz,
constantElementValue
.u2elementNameIndex);
309
if (
constantElementValue
.u1tag == ClassConstants.ELEMENT_VALUE_STRING_CONSTANT)
311
markCpUtf8Entry(clazz,
constantElementValue
.u2constantValueIndex);
/external/proguard/src/proguard/shrink/
AnnotationUsageMarker.java
145
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
147
if (isReferencedMethodUsed(
constantElementValue
))
150
usageMarker.markAsUsed(
constantElementValue
);
152
markConstant(clazz,
constantElementValue
.u2elementNameIndex);
153
markConstant(clazz,
constantElementValue
.u2constantValueIndex);
UsageMarker.java
773
// public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
775
// if (
constantElementValue
.u2elementNameIndex != 0)
777
// markConstant(clazz,
constantElementValue
.u2elementNameIndex);
780
// markConstant(clazz,
constantElementValue
.u2constantValueIndex);
/external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java
854
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
856
println(visitorInfo(
constantElementValue
) +
858
(
constantElementValue
.u2elementNameIndex == 0 ? "(default)" :
859
clazz.getString(
constantElementValue
.u2elementNameIndex)) + " '" +
860
constantElementValue
.u1tag + "']");
863
clazz.constantPoolEntryAccept(
constantElementValue
.u2constantValueIndex, this);
[
all
...]
/external/proguard/src/proguard/optimize/peephole/
TargetClassChanger.java
317
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
320
visitAnyElementValue(clazz, annotation,
constantElementValue
);
/external/proguard/src/proguard/classfile/io/
ProgramClassWriter.java
656
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
658
dataOutput.writeShort(
constantElementValue
.u2constantValueIndex);
ProgramClassReader.java
701
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
703
constantElementValue
.u2constantValueIndex = dataInput.readUnsignedShort();
[
all
...]
/external/proguard/src/proguard/classfile/util/
ClassReferenceInitializer.java
369
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
371
initializeElementValue(clazz, annotation,
constantElementValue
);
SimplifiedVisitor.java
782
public void visitConstantElementValue(Clazz clazz, Annotation annotation,
ConstantElementValue
constantElementValue
)
784
visitAnyElementValue(clazz, annotation,
constantElementValue
);
/external/proguard/lib/
proguard.jar
Completed in 236 milliseconds