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

1 2 3 4 5 6 7 8 91011>>

  /external/proguard/src/proguard/evaluation/value/
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...]
  /art/test/569-checker-pattern-replacement/src-multidex/
DerivedWithFinalField.java 27 DerivedWithFinalField(double doubleValue) {
29 doubleField = doubleValue;
32 DerivedWithFinalField(int intValue, double doubleValue) {
34 doubleField = doubleValue;
Base.java 34 Base(double doubleValue, Object objectValue) {
35 doubleField = doubleValue;
39 Base(int intValue, double doubleValue, Object objectValue) {
41 doubleField = doubleValue;
45 Base(int intValue, double doubleValue, Object objectValue, String stringValue) {
48 doubleField = doubleValue;
53 Base(double doubleValue) {
54 this(doubleValue, null);
Derived.java 31 public Derived(double doubleValue) {
32 super(doubleValue, null);
35 public Derived(int intValue, double doubleValue, Object objectValue) {
36 super(intValue, doubleValue, objectValue);
41 Derived(int intValue, double doubleValue, Object objectValue, String stringValue) {
42 super(intValue, doubleValue, objectValue, stringValue);
56 public Derived(int intValue, double doubleValue, Object objectValue, float floatValue) {
57 super(intValue, doubleValue, objectValue);
  /external/easymock/src/org/easymock/internal/matchers/
EqualsWithDelta.java 37 return expected.doubleValue() - delta.doubleValue() <= actualNumber
38 .doubleValue()
39 && actualNumber.doubleValue() <= expected.doubleValue()
40 + delta.doubleValue();
  /external/mockito/src/main/java/org/mockito/internal/matchers/
EqualsWithDelta.java 31 return wanted.doubleValue() - delta.doubleValue() <= actual.doubleValue()
32 && actual.doubleValue() <= wanted.doubleValue()
33 + delta.doubleValue();
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/
LineRegion.java 28 if (val1.doubleValue() < v2.doubleValue()) {
42 return maxVal.doubleValue() - minVal.doubleValue();
51 return value.doubleValue() >= minVal.doubleValue() && value.doubleValue() <= maxVal.doubleValue();
66 //double l1min = getMinVal() == null ? Double.NEGATIVE_INFINITY : getMinVal().doubleValue();
67 //double l1max = getMaxVal() == null ? Double.POSITIVE_INFINITY : getMaxVal().doubleValue();
    [all...]
  /external/walt/ios/WALT/
NSArray+Extensions.m 30 return [NSNumber numberWithDouble:0.5 * ([sorted objectAtIndex:count / 2].doubleValue +
31 [sorted objectAtIndex:count / 2 - 1].doubleValue)];
  /libcore/ojluni/src/main/java/java/lang/
Number.java 90 public abstract double doubleValue();
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/util/
ValPixConverter.java 92 float pixX = ValPixConverter.valToPix(x.doubleValue(), minX.doubleValue(), maxX.doubleValue(), plotArea.width(), false) + (plotArea.left);
93 float pixY = ValPixConverter.valToPix(y.doubleValue(), minY.doubleValue(), maxY.doubleValue(), plotArea.height(), true) + plotArea.top;
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYStepCalculator.java 59 stepPix = (float)(stepValue/ ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(), plotPixelSize));
65 stepVal = ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(), plotPixelSize)*stepPix;
70 stepVal = ValPixConverter.valPerPix(minVal.doubleValue(), maxVal.doubleValue(), plotPixelSize)*stepPix;
RectRegion.java 95 RectF thisRegion = getRectF(region, visMinX.doubleValue(), visMaxX.doubleValue(),
96 visMinY.doubleValue(), visMaxY.doubleValue());
102 xLineRegion.getMinVal().doubleValue() != Double.NEGATIVE_INFINITY ? xLineRegion.getMinVal() : visMinX,
103 yLineRegion.getMaxVal().doubleValue() != Double.POSITIVE_INFINITY ? yLineRegion.getMaxVal() : visMaxY,
110 xLineRegion.getMaxVal().doubleValue() != Double.POSITIVE_INFINITY ? xLineRegion.getMaxVal() : visMaxX,
111 yLineRegion.getMinVal().doubleValue() != Double.NEGATIVE_INFINITY ? yLineRegion.getMinVal() : visMinY,
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Measure.java 78 if (a.doubleValue() == b.doubleValue()) {
90 return 31 * Double.valueOf(number.doubleValue()).hashCode() + unit.hashCode();
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
Measure.java 80 if (a.doubleValue() == b.doubleValue()) {
93 return 31 * Double.valueOf(number.doubleValue()).hashCode() + unit.hashCode();
  /external/webrtc/webrtc/modules/video_coding/codecs/h264/
h264_objc.mm 25 return [[[UIDevice currentDevice] systemVersion] doubleValue] >= 8.0;
  /external/apache-commons-math/src/main/java/org/apache/commons/math/
DuplicateSampleAbscissaException.java 48 return ((Double) getArguments()[0]).doubleValue();
  /libcore/support/src/test/java/tests/support/
Support_GetPutFields.java 40 public double doubleValue = 0.0;
80 doubleValue = 424242.42;
97 doubleValue == other.doubleValue &&
111 doubleValue = getField.get("doubleValue", 0.0);
125 putField.put("doubleValue", doubleValue);
Support_GetPutFieldsDeprecated.java 42 public double doubleValue = 0.0;
82 doubleValue = 1231.342;
99 doubleValue == other.doubleValue &&
112 doubleValue = getField.get("doubleValue", 0.0);
126 putField.put("doubleValue", doubleValue);
  /external/annotation-tools/asmx/test/conform/annotations/
ValuesAnnotation.class 
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DefaultTransformer.java 50 return ((Number)o).doubleValue();
54 return Double.valueOf(o.toString()).doubleValue();
  /external/libffi/testsuite/libffi.call/
cls_double_va.c 18 double doubleValue = *(double*)args[1];
20 *(ffi_arg*)resp = printf(format, doubleValue);
  /external/python/cpython2/Modules/_ctypes/libffi/testsuite/libffi.call/
cls_double_va.c 18 double doubleValue = *(double*)args[1];
20 *(ffi_arg*)resp = printf(format, doubleValue);
  /external/python/cpython3/Modules/_ctypes/libffi/testsuite/libffi.call/
cls_double_va.c 18 double doubleValue = *(double*)args[1];
20 *(ffi_arg*)resp = printf(format, doubleValue);
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyPrimitiveValue.java 55 @Override public double doubleValue() {
56 return getValue().doubleValue();
  /art/test/569-checker-pattern-replacement/src/
Main.java 454 public static double constructBase(double doubleValue, Object objectValue) {
455 Base b = new Base(doubleValue, objectValue);
487 public static double constructBase(int intValue, double doubleValue, Object objectValue) {
488 Base b = new Base(intValue, doubleValue, objectValue);
515 public static double constructBaseWith0DoubleNull(double doubleValue) {
516 Base b = new Base(0, doubleValue, null);
539 int intValue, double doubleValue, Object objectValue, String stringValue) {
540 Base b = new Base(intValue, doubleValue, objectValue, stringValue);
566 public static double constructBase(double doubleValue) {
567 Base b = new Base(doubleValue);
    [all...]

Completed in 2484 milliseconds

1 2 3 4 5 6 7 8 91011>>