Searched defs:doubleValue (Results 1 - 25 of 69) sorted by relevance

123

/external/proguard/src/proguard/evaluation/value/
H A DNegatedDoubleValue.java30 private final DoubleValue doubleValue; field in class:NegatedDoubleValue
36 public NegatedDoubleValue(DoubleValue doubleValue) argument
38 this.doubleValue = doubleValue;
46 return doubleValue;
56 this.doubleValue.equals(((NegatedDoubleValue)object).doubleValue);
63 doubleValue.hashCode();
69 return "-"+doubleValue;
H A DDoubleValue.java340 public final DoubleValue doubleValue() method in class:DoubleValue
347 return this.generalize(other.doubleValue());
H A DValue.java87 public DoubleValue doubleValue() method in class:Value
/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/primitives/
H A DMutableFloat.java22 @Override public double doubleValue() {return (double) value;} method in class:MutableFloat
H A DMutableInteger.java22 @Override public double doubleValue() {return (double) value;} method in class:MutableInteger
/external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
H A DLazyPrimitiveValue.java55 @Override public double doubleValue() { method in class:LazyPrimitiveValue
56 return getValue().doubleValue();
/external/guava/guava/src/com/google/common/cache/
H A DLongAdder.java193 public double doubleValue() { method in class:LongAdder
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java106 public double doubleValue() { method in class:AtomicInteger
H A DAtomicLong.java106 public double doubleValue() { method in class:AtomicLong
/external/icu/icu4c/source/io/
H A Dufmt_cmn.h59 double doubleValue; /* double */ member in union:ufmt_args
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
H A DBigReal.java257 public double doubleValue() { method in class:BigReal
258 return d.doubleValue();
/external/guava/guava/src/com/google/common/primitives/
H A DUnsignedInteger.java209 public double doubleValue() { method in class:UnsignedInteger
H A DUnsignedLong.java213 public double doubleValue() { method in class:UnsignedLong
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java229 public double doubleValue() { method in class:AtomicDouble
/external/guava/guava-gwt/src-super/com/google/common/primitives/super/com/google/common/primitives/
H A DUnsignedInteger.java195 public double doubleValue() { method in class:UnsignedInteger
/external/v8/src/inspector/
H A Dv8-value-copier.cc98 double doubleValue = value.As<v8::Number>()->Value(); local
99 int intValue = static_cast<int>(doubleValue);
100 if (intValue == doubleValue) {
104 *result = protocol::FundamentalValue::create(doubleValue);
/external/apache-commons-math/src/main/java/org/apache/commons/math/fraction/
H A DFraction.java317 public double doubleValue() { method in class:Fraction
352 return (float)doubleValue();
387 return (int)doubleValue();
397 return (long)doubleValue();
H A DBigFraction.java680 * @see java.lang.Number#doubleValue()
683 public double doubleValue() { method in class:BigFraction
684 return numerator.doubleValue() / denominator.doubleValue();
926 return (numerator.divide(denominator)).multiply(ONE_HUNDRED_DOUBLE).doubleValue();
997 return FastMath.pow(numerator.doubleValue(), exponent) /
998 FastMath.pow(denominator.doubleValue(), exponent);
/external/javassist/src/main/javassist/compiler/
H A DLex.java23 public double doubleValue; field in class:Token
97 return currentToken.doubleValue;
292 token.doubleValue = (double)value;
337 token.doubleValue = Double.parseDouble(sbuf.toString());
/external/crcalc/src/com/hp/creals/
H A DCR.java711 public double doubleValue() { method in class:CR
715 double scaled_int = get_appr(needed_prec).doubleValue();
743 return (float)doubleValue();
1490 double scaled_appr = scaled_bi_appr.doubleValue();
/external/dexmaker/dexmaker-tests/src/androidTest/java/com/android/dx/
H A DDexMakerTest.java960 Method doubleSwap = instanceSwapMethod(double.class, "doubleValue");
961 instance.doubleValue = 155.5;
963 assertEquals(266.6, instance.doubleValue, DELTA_DOUBLE);
990 public double doubleValue; field in class:DexMakerTest.Instance
1044 Method doubleSwap = staticSwapMethod(double.class, "doubleValue");
1045 Static.doubleValue = 155.5;
1047 assertEquals(266.6, Static.doubleValue, DELTA_DOUBLE);
1074 public static double doubleValue; field in class:DexMakerTest.Static
/external/icu/android_icu4j/src/main/java/android/icu/math/
H A DBigDecimal.java1896 public double doubleValue() { method in class:BigDecimal
1899 return java.lang.Double.valueOf(this.toString()).doubleValue();
/external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/math/
H A DBigDecimal.java1942 public double doubleValue() { method in class:BigDecimal
1945 return java.lang.Double.valueOf(this.toString()).doubleValue();
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/math/
H A DBigDecimal.java1946 public double doubleValue() { method in class:BigDecimal
1949 return java.lang.Double.valueOf(this.toString()).doubleValue();
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DPluralRules.java892 public double doubleValue() { method in class:PluralRules.FixedDecimal
2165 String selectedKeyword = sample instanceof FixedDecimal ? select((FixedDecimal)sample) : select(sample.doubleValue());
2167 result.add(sample.doubleValue());

Completed in 3353 milliseconds

123