/external/proguard/src/proguard/evaluation/value/ |
D | LongValue.java | 30 public abstract class LongValue extends Category2Value class 46 public abstract LongValue negate(); in negate() 71 public LongValue generalize(LongValue other) in generalize() 79 public LongValue add(LongValue other) in add() 87 public LongValue subtract(LongValue other) in subtract() 95 public LongValue subtractFrom(LongValue other) in subtractFrom() 103 public LongValue multiply(LongValue other) in multiply() 112 public LongValue divide(LongValue other) in divide() 121 public LongValue divideOf(LongValue other) in divideOf() 131 public LongValue remainder(LongValue other) in remainder() [all …]
|
D | UnknownLongValue.java | 28 public class UnknownLongValue extends LongValue 32 public LongValue negate() in negate() 55 public LongValue generalize(LongValue other) in generalize() 60 public LongValue add(LongValue other) in add() 65 public LongValue subtract(LongValue other) in subtract() 70 public LongValue subtractFrom(LongValue other) in subtractFrom() 75 public LongValue multiply(LongValue other) in multiply() 81 public LongValue divide(LongValue other) in divide() 87 public LongValue divideOf(LongValue other) in divideOf() 93 public LongValue remainder(LongValue other) in remainder() [all …]
|
D | SpecificLongValue.java | 28 abstract class SpecificLongValue extends LongValue 32 public LongValue negate() in negate() 55 public LongValue generalize(LongValue other) in generalize() 60 public LongValue add(LongValue other) in add() 65 public LongValue subtract(LongValue other) in subtract() 70 public LongValue subtractFrom(LongValue other) in subtractFrom() 75 public LongValue multiply(LongValue other) in multiply() 80 public LongValue divide(LongValue other) in divide() 86 public LongValue divideOf(LongValue other) in divideOf() 92 public LongValue remainder(LongValue other) in remainder() [all …]
|
D | ParticularLongValue.java | 52 public LongValue negate() in negate() 75 public LongValue generalize(LongValue other) in generalize() 80 public LongValue add(LongValue other) in add() 85 public LongValue subtract(LongValue other) in subtract() 90 public LongValue subtractFrom(LongValue other) in subtractFrom() 95 public LongValue multiply(LongValue other) in multiply() 100 public LongValue divide(LongValue other) in divide() 106 public LongValue divideOf(LongValue other) in divideOf() 112 public LongValue remainder(LongValue other) in remainder() 118 public LongValue remainderOf(LongValue other) in remainderOf() [all …]
|
D | IntegerValue.java | 66 public abstract LongValue convertToLong(); in convertToLong() 169 public abstract LongValue shiftLeftOf(LongValue other); in shiftLeftOf() 174 public abstract LongValue shiftRightOf(LongValue other); in shiftRightOf() 179 public abstract LongValue unsignedShiftRightOf(LongValue other); in unsignedShiftRightOf() 382 public LongValue shiftLeftOf(UnknownLongValue other) in shiftLeftOf() 384 return shiftLeftOf((LongValue)other); in shiftLeftOf() 390 public LongValue shiftRightOf(UnknownLongValue other) in shiftRightOf() 392 return shiftRightOf((LongValue)other); in shiftRightOf() 399 public LongValue unsignedShiftRightOf(UnknownLongValue other) in unsignedShiftRightOf() 401 return unsignedShiftRightOf((LongValue)other); in unsignedShiftRightOf() [all …]
|
D | UnknownIntegerValue.java | 52 public LongValue convertToLong() in convertToLong() 151 public LongValue shiftLeftOf(LongValue other) in shiftLeftOf() 156 public LongValue shiftRightOf(LongValue other) in shiftRightOf() 161 public LongValue unsignedShiftRightOf(LongValue other) in unsignedShiftRightOf()
|
D | SpecificIntegerValue.java | 52 public LongValue convertToLong() in convertToLong() 149 public LongValue shiftLeftOf(LongValue other) in shiftLeftOf() 154 public LongValue shiftRightOf(LongValue other) in shiftRightOf() 159 public LongValue unsignedShiftRightOf(LongValue other) in unsignedShiftRightOf() 281 public LongValue shiftLeftOf(SpecificLongValue other) in shiftLeftOf() 286 public LongValue shiftRightOf(SpecificLongValue other) in shiftRightOf() 291 public LongValue unsignedShiftRightOf(SpecificLongValue other) in unsignedShiftRightOf()
|
D | ParticularIntegerValue.java | 84 public LongValue convertToLong() in convertToLong() 181 public LongValue shiftLeftOf(LongValue other) in shiftLeftOf() 186 public LongValue shiftRightOf(LongValue other) in shiftRightOf() 191 public LongValue unsignedShiftRightOf(LongValue other) in unsignedShiftRightOf() 309 public LongValue shiftLeftOf(ParticularLongValue other) in shiftLeftOf() 314 public LongValue shiftRightOf(ParticularLongValue other) in shiftRightOf() 319 public LongValue unsignedShiftRightOf(ParticularLongValue other) in unsignedShiftRightOf()
|
D | NegatedLongValue.java | 30 private final LongValue longValue; 36 public NegatedLongValue(LongValue longValue) in NegatedLongValue() 44 public LongValue negate() in negate()
|
D | ParticularValueFactory.java | 41 static final LongValue LONG_VALUE_0 = new ParticularLongValue(0); 42 static final LongValue LONG_VALUE_1 = new ParticularLongValue(1); 72 public LongValue createLongValue(long value) in createLongValue()
|
D | ValueFactory.java | 35 static final LongValue LONG_VALUE = new UnknownLongValue(); 90 public LongValue createLongValue() in createLongValue() 98 public LongValue createLongValue(long value) in createLongValue()
|
D | CompositeLongValue.java | 44 private final LongValue longValue1; 53 public CompositeLongValue(LongValue longValue1, in CompositeLongValue()
|
D | IdentifiedValueFactory.java | 48 public LongValue createLongValue() in createLongValue()
|
D | UnknownFloatValue.java | 42 public LongValue convertToLong() in convertToLong()
|
D | UnknownDoubleValue.java | 42 public LongValue convertToLong() in convertToLong()
|
D | Value.java | 71 public LongValue longValue() in longValue()
|
D | ReferenceValue.java | 88 public LongValue longArrayLoad(IntegerValue indexValue, ValueFactory valueFactory) in longArrayLoad()
|
D | SpecificDoubleValue.java | 42 public LongValue convertToLong() in convertToLong()
|
D | SpecificFloatValue.java | 42 public LongValue convertToLong() in convertToLong()
|
D | ParticularFloatValue.java | 62 public LongValue convertToLong() in convertToLong()
|
D | ParticularDoubleValue.java | 62 public LongValue convertToLong() in convertToLong()
|
D | DoubleValue.java | 56 public abstract LongValue convertToLong(); in convertToLong()
|
D | FloatValue.java | 56 public abstract LongValue convertToLong(); in convertToLong()
|
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/ |
D | LazyLongValue.java | 35 import com.sun.jdi.LongValue; 38 public class LazyLongValue extends LazyComparablePrimitiveValue<LongValue> implements LongValue {
|
/external/clang/test/SemaTemplate/ |
D | temp_arg_nontype.cpp | 21 const long LongValue = 12345678; variable 22 A<LongValue> *a8;
|