Searched refs:DoubleValue (Results 1 - 25 of 55) sorted by relevance

123

/external/proguard/src/proguard/evaluation/value/
H A DUnknownDoubleValue.java28 public class UnknownDoubleValue extends DoubleValue
32 public DoubleValue negate()
55 public DoubleValue generalize(DoubleValue other)
60 public DoubleValue add(DoubleValue other)
65 public DoubleValue subtract(DoubleValue other)
70 public DoubleValue subtractFrom(DoubleValue othe
[all...]
H A DDoubleValue.java30 public abstract class DoubleValue extends Category2Value class in inherits:Category2Value
44 * Returns the negated value of this DoubleValue.
46 public abstract DoubleValue negate();
49 * Converts this DoubleValue to an IntegerValue.
54 * Converts this DoubleValue to a LongValue.
59 * Converts this DoubleValue to a FloatValue.
67 * Returns the generalization of this DoubleValue and the given other
68 * DoubleValue.
70 public abstract DoubleValue generalize(DoubleValue othe
[all...]
H A DSpecificDoubleValue.java24 * This DoubleValue represents a specific double value.
28 abstract class SpecificDoubleValue extends DoubleValue
30 // Implementations of unary methods of DoubleValue.
32 public DoubleValue negate()
53 // Implementations of binary methods of DoubleValue.
55 public DoubleValue generalize(DoubleValue other)
60 public DoubleValue add(DoubleValue other)
65 public DoubleValue subtrac
[all...]
H A DParticularDoubleValue.java24 * This DoubleValue represents a particular double value.
42 // Implementations for DoubleValue.
50 // Implementations of unary methods of DoubleValue.
52 public DoubleValue negate()
73 // Implementations of binary methods of DoubleValue.
75 public DoubleValue generalize(DoubleValue other)
80 public DoubleValue add(DoubleValue other)
85 public DoubleValue subtrac
[all...]
H A DNegatedDoubleValue.java24 * This DoubleValue represents a double value that is negated.
30 private final DoubleValue doubleValue;
36 public NegatedDoubleValue(DoubleValue doubleValue)
42 // Implementations of unary methods of DoubleValue.
44 public DoubleValue negate()
H A DCompositeDoubleValue.java24 * This DoubleValue represents the result of a binary operation on two double
38 private final DoubleValue doubleValue1;
40 private final DoubleValue doubleValue2;
47 public CompositeDoubleValue(DoubleValue doubleValue1,
49 DoubleValue doubleValue2)
H A DSpecificValueFactory.java44 static final DoubleValue DOUBLE_VALUE_0 = new ParticularDoubleValue(0.0);
45 static final DoubleValue DOUBLE_VALUE_1 = new ParticularDoubleValue(1.0);
83 public DoubleValue createDoubleValue(double value)
H A DValueFactory.java37 static final DoubleValue DOUBLE_VALUE = new UnknownDoubleValue();
122 * Creates a new DoubleValue with an undefined value.
124 public DoubleValue createDoubleValue()
130 * Creates a new DoubleValue with a given particular value.
132 public DoubleValue createDoubleValue(double value)
H A DIdentifiedValueFactory.java61 public DoubleValue createDoubleValue()
H A DUnknownFloatValue.java47 public DoubleValue convertToDouble()
H A DValue.java85 * Returns this Value as a DoubleValue.
87 public DoubleValue doubleValue()
H A DUnknownLongValue.java47 public DoubleValue convertToDouble()
H A DUnknownIntegerValue.java62 public DoubleValue convertToDouble()
H A DParticularFloatValue.java67 public DoubleValue convertToDouble()
H A DSpecificFloatValue.java47 public DoubleValue convertToDouble()
H A DFloatValue.java59 * Converts this FloatValue to a DoubleValue.
61 public abstract DoubleValue convertToDouble();
H A DParticularLongValue.java67 public DoubleValue convertToDouble()
H A DSpecificLongValue.java47 public DoubleValue convertToDouble()
H A DLongValue.java60 * Converts this LongValue to a DoubleValue.
62 public abstract DoubleValue convertToDouble();
H A DParticularIntegerValue.java94 public DoubleValue convertToDouble()
H A DSpecificIntegerValue.java62 public DoubleValue convertToDouble()
/external/proguard/src/proguard/evaluation/
H A DVariables.java251 * Loads the DoubleValue from the variable with the given index.
253 public DoubleValue dload(int index)
H A DStack.java318 * Pops the top DoubleValue from the stack.
320 public DoubleValue dpop()
/external/chromium_org/v8/src/
H A Dhydrogen-instructions.cc1382 double double_res = c->DoubleValue();
3789 double double_res = c_left->DoubleValue() op c_right->DoubleValue(); \
3831 if (std::isfinite(c_code->DoubleValue())) {
3850 double d = constant->DoubleValue();
3919 double result = power_helper(c_left->DoubleValue(),
3920 c_right->DoubleValue());
3934 double d_left = c_left->DoubleValue();
3935 double d_right = c_right->DoubleValue();
3994 if (c_right->DoubleValue() !
[all...]
/external/v8/src/
H A Dhydrogen-instructions.cc1325 double v = DoubleValue();
2108 double double_res = c_left->DoubleValue() op c_right->DoubleValue(); \
2158 if (c_right->DoubleValue() != 0) {
2159 double double_res = c_left->DoubleValue() / c_right->DoubleValue();

Completed in 138 milliseconds

123