HomeSort by relevance Sort by last modified time
    Searched full:integerconstant (Results 1 - 25 of 27) sorted by null

1 2

  /external/proguard/src/proguard/classfile/constant/
IntegerConstant.java 31 public class IntegerConstant extends Constant
37 * Creates an uninitialized IntegerConstant.
39 public IntegerConstant()
45 * Creates a new IntegerConstant with the given integer value.
47 public IntegerConstant(int value)
54 * Returns the integer value of this IntegerConstant.
63 * Sets the integer value of this IntegerConstant.
  /external/proguard/src/proguard/evaluation/
ConstantValueFactory.java 66 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
68 value = valueFactory.createIntegerValue(integerConstant.getValue());
  /external/proguard/src/proguard/classfile/constant/visitor/
ConstantVisitor.java 35 public void visitIntegerConstant( Clazz clazz, IntegerConstant integerConstant);
  /external/proguard/src/proguard/classfile/editor/
ComparableConstant.java 126 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
128 int value = integerConstant.getValue();
129 int otherValue = ((IntegerConstant)otherConstant).getValue();
ConstantAdder.java 88 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
91 constantPoolEditor.addIntegerConstant(integerConstant.getValue());
ConstantPoolEditor.java 49 * Finds or creates a IntegerConstant constant pool entry with the given
66 IntegerConstant integerConstant = (IntegerConstant)constant;
67 if (integerConstant.getValue() == value)
74 return addConstant(new IntegerConstant(value));
ConstantPoolRemapper.java 104 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
  /external/proguard/src/proguard/classfile/io/
LibraryClassReader.java 239 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
346 case ClassConstants.CONSTANT_Integer: return new IntegerConstant();
ProgramClassWriter.java 172 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
174 dataOutput.writeInt(integerConstant.u4value);
ProgramClassReader.java 213 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
215 integerConstant.u4value = dataInput.readInt();
804 case ClassConstants.CONSTANT_Integer: return new IntegerConstant();
    [all...]
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 367 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
369 IntegerConstant integerPatternConstant = (IntegerConstant)patternConstant;
372 matchingConstant = integerConstant.getValue() ==
SimplifiedVisitor.java 124 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
126 visitAnyConstant(clazz, integerConstant);
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceReplacer.java 383 ((IntegerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))).getValue() :
388 ((IntegerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))).getValue() :
393 ((IntegerConstant)(programClass.getConstant(instructionSequenceMatcher.matchedConstantIndex(argument)))).getValue() :
InstructionSequenceConstants.java 228 new IntegerConstant(32768),
229 new IntegerConstant(65536),
230 new IntegerConstant(16777216),
232 new IntegerConstant(0x0000ff00),
233 new IntegerConstant(0x00ff0000),
234 new IntegerConstant(0xff000000),
235 new IntegerConstant(0x0000ffff),
236 new IntegerConstant(0xffff0000),
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 221 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) {}
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 186 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
188 println(visitorInfo(integerConstant) + " Integer [" +
189 integerConstant.getValue() + "]");
    [all...]
  /external/proguard/src/proguard/shrink/
UsageMarker.java 383 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
385 if (shouldBeMarkedAsUsed(integerConstant))
387 markAsUsed(integerConstant);
    [all...]
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.10/
proguard-base-4.10.jar 
proguard-base-4.10-sources.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.9/
proguard-base-4.9.jar 
proguard-base-4.9-sources.jar 
  /prebuilts/tools/common/m2/repository/net/sf/proguard/proguard-base/4.11/
proguard-base-4.11-sources.jar 
proguard-base-4.11.jar 
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /prebuilts/tools/common/proguard/
proguard4.7.zip 

Completed in 371 milliseconds

1 2