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

  /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/classfile/constant/visitor/
ConstantVisitor.java 35 public void visitIntegerConstant( Clazz clazz, IntegerConstant integerConstant);
  /external/proguard/src/proguard/classfile/editor/
ComparableConstant.java 123 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
126 result = new Integer(integerConstant.getValue()).compareTo(new Integer(((IntegerConstant)otherConstant).getValue()));
ConstantAdder.java 87 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
90 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 131 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
  /external/proguard/src/proguard/classfile/io/
LibraryClassReader.java 239 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
329 case ClassConstants.CONSTANT_Integer: return new IntegerConstant();
ProgramClassWriter.java 172 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
174 dataOutput.writeInt(integerConstant.u4value);
ProgramClassReader.java 212 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
214 integerConstant.u4value = dataInput.readInt();
753 case ClassConstants.CONSTANT_Integer: return new IntegerConstant();
    [all...]
  /external/proguard/src/proguard/classfile/instruction/
ConstantInstruction.java 223 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant) {}
  /external/proguard/src/proguard/classfile/util/
InstructionSequenceMatcher.java 328 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
330 IntegerConstant integerPatternConstant = (IntegerConstant)patternConstant;
333 matchingConstant = integerConstant.getValue() ==
SimplifiedVisitor.java 124 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
126 visitAnyConstant(clazz, integerConstant);
  /external/proguard/src/proguard/classfile/visitor/
ClassPrinter.java 183 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
185 println(visitorInfo(integerConstant) + " Integer [" +
186 integerConstant.getValue() + "]");
    [all...]
  /external/proguard/src/proguard/shrink/
UsageMarker.java 354 public void visitIntegerConstant(Clazz clazz, IntegerConstant integerConstant)
356 if (shouldBeMarkedAsUsed(integerConstant))
358 markAsUsed(integerConstant);
  /external/proguard/src/proguard/evaluation/
Processor.java     [all...]
  /external/proguard/src/proguard/optimize/peephole/
InstructionSequenceConstants.java 102 new IntegerConstant(32768),
103 new IntegerConstant(65536),
104 new IntegerConstant(16777216),
106 new IntegerConstant(0x0000ff00),
107 new IntegerConstant(0x00ff0000),
108 new IntegerConstant(0xff000000),
109 new IntegerConstant(0x0000ffff),
110 new IntegerConstant(0xffff0000),
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp     [all...]
  /external/proguard/lib/
proguard.jar 
  /prebuilts/tools/common/proguard/
proguard4.7.zip 
  /prebuilts/tools/common/proguard/proguard4.7/lib/
proguard.jar 

Completed in 617 milliseconds