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

1 2

  /external/proguard/src/proguard/evaluation/value/
UnknownLongValue.java 28 public class UnknownLongValue extends LongValue
32 public LongValue negate()
55 public LongValue generalize(LongValue other)
60 public LongValue add(LongValue other)
65 public LongValue subtract(LongValue other)
70 public LongValue subtractFrom(LongValue other
    [all...]
SpecificLongValue.java 24 * This LongValue represents a specific long value.
28 abstract class SpecificLongValue extends LongValue
30 // Implementations of unary methods of LongValue.
32 public LongValue negate()
53 // Implementations of binary methods of LongValue.
55 public LongValue generalize(LongValue other)
60 public LongValue add(LongValue other)
65 public LongValue subtract(LongValue other
    [all...]
ParticularLongValue.java 24 * This LongValue represents a particular long value.
42 // Implementations for LongValue.
50 // Implementations of unary methods of LongValue.
52 public LongValue negate()
73 // Implementations of binary methods of LongValue.
75 public LongValue generalize(LongValue other)
80 public LongValue add(LongValue other)
85 public LongValue subtract(LongValue other
    [all...]
LongValue.java 30 public abstract class LongValue extends Category2Value
44 * Returns the negated value of this LongValue.
46 public abstract LongValue negate();
50 * Converts this LongValue to an IntegerValue.
55 * Converts this LongValue to a FloatValue.
60 * Converts this LongValue to a DoubleValue.
68 * Returns the generalization of this LongValue and the given other
69 * LongValue.
71 public LongValue generalize(LongValue other
    [all...]
NegatedLongValue.java 24 * This LongValue represents a long value that is negated.
30 private final LongValue longValue;
36 public NegatedLongValue(LongValue longValue)
38 this.longValue = longValue;
42 // Implementations of unary methods of LongValue.
44 public LongValue negate()
46 return longValue;
    [all...]
UnknownIntegerValue.java 52 public LongValue convertToLong()
151 public LongValue shiftLeftOf(LongValue other)
156 public LongValue shiftRightOf(LongValue other)
161 public LongValue unsignedShiftRightOf(LongValue other)
CompositeLongValue.java 24 * This LongValue represents the result of a binary operation on two long
44 private final LongValue longValue1;
53 public CompositeLongValue(LongValue longValue1,
IntegerValue.java 64 * Converts this IntegerValue to a LongValue.
66 public abstract LongValue convertToLong();
167 * Returns the given LongValue, shifted left by this IntegerValue.
169 public abstract LongValue shiftLeftOf(LongValue other);
172 * Returns the given LongValue, shifted right by this IntegerValue.
174 public abstract LongValue shiftRightOf(LongValue other);
177 * Returns the given unsigned LongValue, shifted right by this IntegerValue.
179 public abstract LongValue unsignedShiftRightOf(LongValue other)
    [all...]
SpecificValueFactory.java 39 static final LongValue LONG_VALUE_0 = new ParticularLongValue(0);
40 static final LongValue LONG_VALUE_1 = new ParticularLongValue(1);
66 public LongValue createLongValue(long value)
ParticularIntegerValue.java 84 public LongValue convertToLong()
181 public LongValue shiftLeftOf(LongValue other)
186 public LongValue shiftRightOf(LongValue other)
191 public LongValue unsignedShiftRightOf(LongValue other)
309 public LongValue shiftLeftOf(ParticularLongValue other)
314 public LongValue shiftRightOf(ParticularLongValue other)
319 public LongValue unsignedShiftRightOf(ParticularLongValue other
    [all...]
SpecificIntegerValue.java 52 public LongValue convertToLong()
149 public LongValue shiftLeftOf(LongValue other)
154 public LongValue shiftRightOf(LongValue other)
159 public LongValue unsignedShiftRightOf(LongValue other)
281 public LongValue shiftLeftOf(SpecificLongValue other)
286 public LongValue shiftRightOf(SpecificLongValue other)
291 public LongValue unsignedShiftRightOf(SpecificLongValue other
    [all...]
ValueFactory.java 35 static final LongValue LONG_VALUE = new UnknownLongValue();
88 * Creates a new LongValue with an undefined value.
90 public LongValue createLongValue()
96 * Creates a new LongValue with a given particular value.
98 public LongValue createLongValue(long value)
IdentifiedValueFactory.java 49 public LongValue createLongValue()
UnknownDoubleValue.java 42 public LongValue convertToLong()
UnknownFloatValue.java 42 public LongValue convertToLong()
Value.java 69 * Returns this Value as a LongValue.
71 public LongValue longValue()
ParticularDoubleValue.java 62 public LongValue convertToLong()
ParticularFloatValue.java 62 public LongValue convertToLong()
SpecificDoubleValue.java 42 public LongValue convertToLong()
SpecificFloatValue.java 42 public LongValue convertToLong()
DoubleValue.java 54 * Converts this DoubleValue to a LongValue.
56 public abstract LongValue convertToLong();
FloatValue.java 54 * Converts this FloatValue to a LongValue.
56 public abstract LongValue convertToLong();
  /external/clang/test/SemaTemplate/
temp_arg_nontype.cpp 21 const long LongValue = 12345678;
22 A<LongValue> *a8;
  /external/proguard/src/proguard/evaluation/
Variables.java 233 * Loads the LongValue from the variable with the given index.
235 public LongValue lload(int index)
237 return load(index).longValue();
Stack.java 300 * Pops the top LongValue from the stack.
302 public LongValue lpop()
304 return pop().longValue();

Completed in 3757 milliseconds

1 2