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

1 2 3

  /external/proguard/src/proguard/evaluation/value/
UnknownDoubleValue.java 28 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 other
    [all...]
SpecificDoubleValue.java 24 * 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 subtract(DoubleValue other
    [all...]
DoubleValue.java 30 public abstract class DoubleValue extends 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 other)
    [all...]
ParticularDoubleValue.java 24 * 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)
87 public DoubleValue subtract(DoubleValue other
    [all...]
NegatedDoubleValue.java 24 * This DoubleValue represents a double value that is negated.
30 private final DoubleValue doubleValue;
36 public NegatedDoubleValue(DoubleValue doubleValue)
38 this.doubleValue = doubleValue;
42 // Implementations of unary methods of DoubleValue.
44 public DoubleValue negate()
46 return doubleValue;
    [all...]
CompositeDoubleValue.java 24 * 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)
ParticularValueFactory.java 46 static final DoubleValue DOUBLE_VALUE_0 = new ParticularDoubleValue(0.0);
47 static final DoubleValue DOUBLE_VALUE_1 = new ParticularDoubleValue(1.0);
91 public DoubleValue createDoubleValue(double value)
ValueFactory.java 37 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)
IdentifiedValueFactory.java 60 public DoubleValue createDoubleValue()
UnknownFloatValue.java 47 public DoubleValue convertToDouble()
Value.java 85 * Returns this Value as a DoubleValue.
87 public DoubleValue doubleValue()
UnknownLongValue.java 47 public DoubleValue convertToDouble()
ReferenceValue.java 108 public DoubleValue doubleArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
SpecificFloatValue.java 47 public DoubleValue convertToDouble()
UnknownIntegerValue.java 62 public DoubleValue convertToDouble()
ParticularFloatValue.java 67 public DoubleValue convertToDouble()
DetailedArrayReferenceValue.java 108 public DoubleValue doubleArrayLoad(IntegerValue indexValue, ValueFactory valueFactory)
112 value.doubleValue() :
FloatValue.java 59 * Converts this FloatValue to a DoubleValue.
61 public abstract DoubleValue convertToDouble();
ParticularLongValue.java 67 public DoubleValue convertToDouble()
SpecificLongValue.java 47 public DoubleValue convertToDouble()
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyDoubleValue.java 35 import com.sun.jdi.DoubleValue;
38 public class LazyDoubleValue extends LazyComparablePrimitiveValue<DoubleValue> implements DoubleValue {
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/
wrappers.pb.h 42 class DoubleValue;
52 class LIBPROTOBUF_EXPORT DoubleValue : public ::google::protobuf::Message {
54 DoubleValue();
55 virtual ~DoubleValue();
57 DoubleValue(const DoubleValue& from);
59 inline DoubleValue& operator=(const DoubleValue& from) {
69 static const DoubleValue& default_instance();
71 void UnsafeArenaSwap(DoubleValue* other)
    [all...]
  /external/proguard/src/proguard/evaluation/
Variables.java 250 * Loads the DoubleValue from the variable with the given index.
252 public DoubleValue dload(int index)
254 return load(index).doubleValue();
Stack.java 317 * Pops the top DoubleValue from the stack.
319 public DoubleValue dpop()
321 return pop().doubleValue();
  /external/gemmlowp/internal/
fixedpoint.h 430 DoubleValue) \
431 (CheckedFixedPointConstant<FixedPointType>(ScalarRawValue, DoubleValue))
435 DoubleValue) \

Completed in 148 milliseconds

1 2 3