Searched refs:Constant (Results 1 - 25 of 67) sorted by relevance

123

/external/proguard/src/proguard/classfile/editor/
H A DConstantPoolSorter.java24 import proguard.classfile.constant.Constant;
43 private Constant[] newConstantPool = new Constant[ClassConstants.TYPICAL_CONSTANT_POOL_SIZE];
59 newConstantPool = new Constant[constantPoolCount];
66 Constant constant = programClass.constantPool[oldIndex];
92 Constant constant = comparableConstant.getConstant();
H A DConstantPoolEditor.java56 Constant[] constantPool = targetClass.constantPool;
61 Constant constant = constantPool[index];
85 Constant[] constantPool = targetClass.constantPool;
90 Constant constant = constantPool[index];
115 Constant[] constantPool = targetClass.constantPool;
120 Constant constant = constantPool[index];
145 Constant[] constantPool = targetClass.constantPool;
150 Constant constant = constantPool[index];
177 Constant[] constantPool = targetClass.constantPool;
182 Constant constan
[all...]
H A DComparableConstant.java30 * This class is a <code>Comparable</code> wrapper of <code>Constant</code>
60 private final Constant thisConstant;
62 private Constant otherConstant;
66 public ComparableConstant(Clazz clazz, int index, Constant constant)
80 public Constant getConstant()
114 // Otherwise compare based on the contents of the Constant objects.
/external/proguard/src/proguard/classfile/constant/
H A DConstant.java32 public abstract class Constant implements VisitorAccepter class in inherits:VisitorAccepter
H A DDoubleConstant.java27 * This Constant represents a double constant in the constant pool.
31 public class DoubleConstant extends Constant
71 // Implementations for Constant.
H A DFloatConstant.java27 * This Constant represents a float constant in the constant pool.
31 public class FloatConstant extends Constant
71 // Implementations for Constant.
H A DIntegerConstant.java27 * This Constant represents a integer constant in the constant pool.
31 public class IntegerConstant extends Constant
71 // Implementations for Constant.
H A DLongConstant.java27 * This Constant represents a long constant in the constant pool.
31 public class LongConstant extends Constant
71 // Implementations for Constant.
H A DClassConstant.java28 * This Constant represents a class constant in the constant pool.
32 public class ClassConstant extends Constant
82 // Implementations for Constant.
H A DNameAndTypeConstant.java27 * This Constant represents a name and type constant in the constant pool.
31 public class NameAndTypeConstant extends Constant
108 // Implementations for Constant.
H A DRefConstant.java27 * This Constant represents a ref constant in the constant pool.
31 public abstract class RefConstant extends Constant
H A DStringConstant.java28 * This Constant represents a string constant in the constant pool.
32 public class StringConstant extends Constant
99 // Implementations for Constant.
/external/proguard/src/proguard/optimize/peephole/
H A DInstructionSequencesReplacer.java23 import proguard.classfile.constant.Constant;
56 public InstructionSequencesReplacer(Constant[] patternConstants,
85 public InstructionSequencesReplacer(Constant[] patternConstants,
115 private static InstructionVisitor[] createInstructionSequenceReplacers(Constant[] patternConstants,
/external/proguard/src/proguard/classfile/visitor/
H A DClassForNameClassVisitor.java58 public void visitAnyConstant(Clazz clazz, Constant constant) {}
H A DReferencedMemberVisitor.java52 public void visitAnyConstant(Clazz clazz, Constant constant) {}
H A DDotClassClassVisitor.java83 public void visitAnyConstant(Clazz clazz, Constant constant) {}
/external/proguard/src/proguard/obfuscate/
H A DNameAndTypeShrinker.java24 import proguard.classfile.constant.Constant;
72 private int shrinkConstantPool(Constant[] constantPool, int length)
89 Constant constant = constantPool[index];
H A DUtf8Shrinker.java24 import proguard.classfile.constant.Constant;
71 private int shrinkConstantPool(Constant[] constantPool, int length)
87 Constant constant = constantPool[index];
H A DNameAndTypeUsageMarker.java65 public void visitAnyConstant(Clazz clazz, Constant constant) {}
/external/proguard/src/proguard/classfile/util/
H A DStringReferenceInitializer.java56 public void visitAnyConstant(Clazz clazz, Constant constant) {}
H A DDynamicClassReferenceInitializer.java63 private final Constant[] CLASS_FOR_NAME_CONSTANTS = new Constant[]
102 // private Constant[] DOT_CLASS_JAVAC_CONSTANTS = new Constant[]
110 private final Constant[] DOT_CLASS_JAVAC_CONSTANTS = new Constant[]
125 // private Constant[] DOT_CLASS_JIKES_CONSTANTS = new Constant[]
133 private final Constant[] DOT_CLASS_JIKES_CONSTANTS = new Constant[]
[all...]
H A DDynamicMemberReferenceInitializer.java68 private final Constant[] GET_FIELD_CONSTANTS = new Constant[]
78 private final Constant[] GET_DECLARED_FIELD_CONSTANTS = new Constant[]
88 private final Constant[] GET_METHOD_CONSTANTS = new Constant[]
98 private final Constant[] GET_DECLARED_METHOD_CONSTANTS = new Constant[]
/external/proguard/src/proguard/optimize/info/
H A DPackageVisibleMemberInvokingClassMarker.java40 public void visitAnyConstant(Clazz clazz, Constant constant) {}
H A DDotClassMarker.java61 public void visitAnyConstant(Clazz clazz, Constant constant) {}
/external/proguard/src/proguard/classfile/io/
H A DLibraryClassReader.java52 private Constant[] constantPool;
95 constantPool = new Constant[u2constantPoolCount];
99 Constant constant = createConstant();
322 private Constant createConstant()

Completed in 177 milliseconds

123