Home
last modified time | relevance | path

Searched refs:IntegerValue (Results 1 – 25 of 40) sorted by relevance

12

/external/proguard/src/proguard/evaluation/value/
DIntegerValue.java30 public abstract class IntegerValue extends Category1Value class
46 public abstract IntegerValue negate(); in negate()
51 public abstract IntegerValue convertToByte(); in convertToByte()
56 public abstract IntegerValue convertToCharacter(); in convertToCharacter()
61 public abstract IntegerValue convertToShort(); in convertToShort()
85 public abstract IntegerValue generalize(IntegerValue other); in generalize()
90 public abstract IntegerValue add(IntegerValue other); in add()
95 public abstract IntegerValue subtract(IntegerValue other); in subtract()
100 public abstract IntegerValue subtractFrom(IntegerValue other); in subtractFrom()
105 public abstract IntegerValue multiply(IntegerValue other) in multiply()
[all …]
DUnknownIntegerValue.java28 public class UnknownIntegerValue extends IntegerValue
32 public IntegerValue negate() in negate()
37 public IntegerValue convertToByte() in convertToByte()
42 public IntegerValue convertToCharacter() in convertToCharacter()
47 public IntegerValue convertToShort() in convertToShort()
70 public IntegerValue generalize(IntegerValue other) in generalize()
76 public IntegerValue add(IntegerValue other) in add()
81 public IntegerValue subtract(IntegerValue other) in subtract()
86 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom()
91 public IntegerValue multiply(IntegerValue other) in multiply()
[all …]
DSpecificIntegerValue.java28 abstract class SpecificIntegerValue extends IntegerValue
32 public IntegerValue negate() in negate()
37 public IntegerValue convertToByte() in convertToByte()
42 public IntegerValue convertToCharacter() in convertToCharacter()
47 public IntegerValue convertToShort() in convertToShort()
70 public IntegerValue generalize(IntegerValue other) in generalize()
75 public IntegerValue add(IntegerValue other) in add()
80 public IntegerValue subtract(IntegerValue other) in subtract()
85 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom()
90 public IntegerValue multiply(IntegerValue other) in multiply()
[all …]
DParticularIntegerValue.java52 public IntegerValue negate() in negate()
57 public IntegerValue convertToByte() in convertToByte()
66 public IntegerValue convertToCharacter() in convertToCharacter()
75 public IntegerValue convertToShort() in convertToShort()
102 public IntegerValue generalize(IntegerValue other) in generalize()
107 public IntegerValue add(IntegerValue other) in add()
112 public IntegerValue subtract(IntegerValue other) in subtract()
117 public IntegerValue subtractFrom(IntegerValue other) in subtractFrom()
122 public IntegerValue multiply(IntegerValue other) in multiply()
127 public IntegerValue divide(IntegerValue other) in divide()
[all …]
DSpecificValueFactory.java32 static final IntegerValue INTEGER_VALUE_M1 = new ParticularIntegerValue(-1);
33 static final IntegerValue INTEGER_VALUE_0 = new ParticularIntegerValue(0);
34 static final IntegerValue INTEGER_VALUE_1 = new ParticularIntegerValue(1);
35 static final IntegerValue INTEGER_VALUE_2 = new ParticularIntegerValue(2);
36 static final IntegerValue INTEGER_VALUE_3 = new ParticularIntegerValue(3);
37 static final IntegerValue INTEGER_VALUE_4 = new ParticularIntegerValue(4);
38 static final IntegerValue INTEGER_VALUE_5 = new ParticularIntegerValue(5);
54 public IntegerValue createIntegerValue(int value) in createIntegerValue()
DLongValue.java52 public abstract IntegerValue convertToInteger(); in convertToInteger()
150 public LongValue shiftLeft(IntegerValue other) in shiftLeft()
158 public LongValue shiftRight(IntegerValue other) in shiftRight()
167 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight()
203 public IntegerValue compare(LongValue other) in compare()
215 public final IntegerValue compareReverse(LongValue other) in compareReverse()
358 public IntegerValue compare(SpecificLongValue other) in compare()
371 public final IntegerValue compareReverse(SpecificLongValue other) in compareReverse()
514 public IntegerValue compare(ParticularLongValue other) in compare()
527 public final IntegerValue compareReverse(ParticularLongValue other) in compareReverse()
DUnknownLongValue.java37 public IntegerValue convertToInteger() in convertToInteger()
105 public LongValue shiftLeft(IntegerValue other) in shiftLeft()
110 public LongValue shiftRight(IntegerValue other) in shiftRight()
115 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight()
135 public IntegerValue compare(LongValue other) in compare()
DFloatValue.java51 public abstract IntegerValue convertToInteger(); in convertToInteger()
117 public abstract IntegerValue compare(FloatValue other); in compare()
126 public final IntegerValue compareReverse(FloatValue other) in compareReverse()
216 public IntegerValue compare(SpecificFloatValue other) in compare()
229 public final IntegerValue compareReverse(SpecificFloatValue other) in compareReverse()
319 public IntegerValue compare(ParticularFloatValue other) in compare()
332 public final IntegerValue compareReverse(ParticularFloatValue other) in compareReverse()
DDoubleValue.java51 public abstract IntegerValue convertToInteger(); in convertToInteger()
117 public abstract IntegerValue compare(DoubleValue other); in compare()
126 public final IntegerValue compareReverse(DoubleValue other) in compareReverse()
216 public IntegerValue compare(SpecificDoubleValue other) in compare()
229 public final IntegerValue compareReverse(SpecificDoubleValue other) in compareReverse()
319 public IntegerValue compare(ParticularDoubleValue other) in compare()
332 public final IntegerValue compareReverse(ParticularDoubleValue other) in compareReverse()
DCompositeIntegerValue.java44 private final IntegerValue integerValue1;
46 private final IntegerValue integerValue2;
53 public CompositeIntegerValue(IntegerValue integerValue1, in CompositeIntegerValue()
55 IntegerValue integerValue2) in CompositeIntegerValue()
DValueFactory.java34 static final IntegerValue INTEGER_VALUE = new UnknownIntegerValue();
73 public IntegerValue createIntegerValue() in createIntegerValue()
81 public IntegerValue createIntegerValue(int value) in createIntegerValue()
170 IntegerValue arrayLength) in createArrayReferenceValue()
186 IntegerValue arrayLength, in createArrayReferenceValue()
DSpecificLongValue.java37 public IntegerValue convertToInteger() in convertToInteger()
104 public LongValue shiftLeft(IntegerValue other) in shiftLeft()
109 public LongValue shiftRight(IntegerValue other) in shiftRight()
114 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight()
134 public IntegerValue compare(LongValue other) in compare()
232 public IntegerValue compare(SpecificLongValue other) in compare()
DNegatedIntegerValue.java30 private final IntegerValue integerValue;
36 public NegatedIntegerValue(IntegerValue integerValue) in NegatedIntegerValue()
44 public IntegerValue negate() in negate()
DParticularLongValue.java57 public IntegerValue convertToInteger() in convertToInteger()
124 public LongValue shiftLeft(IntegerValue other) in shiftLeft()
129 public LongValue shiftRight(IntegerValue other) in shiftRight()
134 public LongValue unsignedShiftRight(IntegerValue other) in unsignedShiftRight()
154 public IntegerValue compare(LongValue other) in compare()
DConvertedCharacterValue.java31 private final IntegerValue value;
37 public ConvertedCharacterValue(IntegerValue value) in ConvertedCharacterValue()
DConvertedShortValue.java31 private final IntegerValue value;
37 public ConvertedShortValue(IntegerValue value) in ConvertedShortValue()
DConvertedByteValue.java31 private final IntegerValue value;
37 public ConvertedByteValue(IntegerValue value) in ConvertedByteValue()
DSpecificDoubleValue.java37 public IntegerValue convertToInteger() in convertToInteger()
100 public IntegerValue compare(DoubleValue other) in compare()
154 public IntegerValue compare(SpecificDoubleValue other) in compare()
DSpecificFloatValue.java37 public IntegerValue convertToInteger() in convertToInteger()
100 public IntegerValue compare(FloatValue other) in compare()
154 public IntegerValue compare(SpecificFloatValue other) in compare()
DParticularDoubleValue.java57 public IntegerValue convertToInteger() in convertToInteger()
126 public IntegerValue compare(DoubleValue other) in compare()
183 public IntegerValue compare(ParticularDoubleValue other) in compare()
DParticularFloatValue.java57 public IntegerValue convertToInteger() in convertToInteger()
126 public IntegerValue compare(FloatValue other) in compare()
183 public IntegerValue compare(ParticularFloatValue other) in compare()
DUnknownFloatValue.java37 public IntegerValue convertToInteger() in convertToInteger()
100 public IntegerValue compare(FloatValue other) in compare()
DUnknownDoubleValue.java37 public IntegerValue convertToInteger() in convertToInteger()
100 public IntegerValue compare(DoubleValue other) in compare()
DIdentifiedValueFactory.java43 public IntegerValue createIntegerValue() in createIntegerValue()
/external/chromium_org/content/renderer/gpu/
Dgpu_benchmarking_extension.cc453 int gesture_source_type = args[0]->IntegerValue(); in GestureSourceTypeSupported()
499 int gesture_source_type = args[2]->IntegerValue(); in BeginSmoothScroll()
509 gesture_params->speed_in_pixels_s = args[4]->IntegerValue(); in BeginSmoothScroll()
518 anchor.SetPoint(args[6]->IntegerValue() * page_scale_factor, in BeginSmoothScroll()
519 args[7]->IntegerValue() * page_scale_factor); in BeginSmoothScroll()
526 int distance_length = args[0]->IntegerValue() * page_scale_factor; in BeginSmoothScroll()
589 gesture_params->speed_in_pixels_s = args[5]->IntegerValue(); in BeginScrollBounce()
597 start.SetPoint(args[6]->IntegerValue() * page_scale_factor, in BeginScrollBounce()
598 args[7]->IntegerValue() * page_scale_factor); in BeginScrollBounce()
604 int distance_length = args[1]->IntegerValue() * page_scale_factor; in BeginScrollBounce()
[all …]

12