OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DoubleValue
(Results
1 - 25
of
57
) 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
...]
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
...]
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
...]
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)
85
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)
SpecificValueFactory.java
44
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)
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
61
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()
UnknownIntegerValue.java
62
public
DoubleValue
convertToDouble()
ParticularFloatValue.java
67
public
DoubleValue
convertToDouble()
SpecificFloatValue.java
47
public
DoubleValue
convertToDouble()
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()
LongValue.java
60
* Converts this LongValue to a
DoubleValue
.
62
public abstract
DoubleValue
convertToDouble();
ParticularIntegerValue.java
94
public
DoubleValue
convertToDouble()
SpecificIntegerValue.java
62
public
DoubleValue
convertToDouble()
/external/proguard/src/proguard/evaluation/
Variables.java
251
* Loads the
DoubleValue
from the variable with the given index.
253
public
DoubleValue
dload(int index)
255
return load(index).
doubleValue
();
Stack.java
318
* Pops the top
DoubleValue
from the stack.
320
public
DoubleValue
dpop()
322
return pop().
doubleValue
();
/external/chromium_org/v8/src/
hydrogen-instructions.cc
[
all
...]
/external/v8/src/
hydrogen-instructions.cc
[
all
...]
Completed in 586 milliseconds
1
2
3