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

1 2 3

  /libcore/ojluni/src/main/java/java/util/function/
DoubleSupplier.java 35 * whose functional method is {@link #getAsDouble()}.
48 double getAsDouble();
  /libcore/ojluni/src/main/java/java/util/
OptionalDouble.java 35 * {@code getAsDouble()} will return the value.
112 public double getAsDouble() {
157 * @return the value if present otherwise the result of {@code other.getAsDouble()}
162 return isPresent ? value : other.getAsDouble();
  /external/parameter-framework/upstream/test/functional-tests/include/
ElementHandle.hpp 76 /** Wrap EH::getAsDouble to throw an exception on failure. */
77 void getAsDouble(double &value) const { mayFailCall(&EH::getAsDouble, value); }
  /libcore/luni/src/test/java/libcore/java/util/
OptionalDoubleTest.java 37 assertEquals(56.0, OptionalDouble.of(56.0).getAsDouble());
40 OptionalDouble.empty().getAsDouble();
  /libcore/ojluni/src/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
MinMaxTest.java 96 assertEquals(1.0, LongStream.range(1, 1001).asDoubleStream().min().getAsDouble());
97 assertEquals(1000.0, LongStream.range(1, 1001).asDoubleStream().max().getAsDouble());
FindFirstOpTest.java 132 assertEquals(i.nextDouble(), r.getAsDouble());
FindAnyOpTest.java 149 double r = or.getAsDouble();
  /libcore/ojluni/src/test/java/util/stream/
TestDoubleSumAverage.java 54 return compareUlpDifference(0.0, ds.get().average().getAsDouble(), 0);
89 ds.get().average().getAsDouble(), 3);
136 failures += compareUlpDifference(expected, ds.get().average().getAsDouble(), 0);
  /cts/tests/tests/content/src/android/content/cts/
ContentValuesTest.java 243 assertEquals(expected, mContentValues.getAsDouble("Double"));
247 assertEquals(expected, mContentValues.getAsDouble("Double"));
250 assertNull(mContentValues.getAsDouble(null));
334 assertEquals(expected, mContentValues.getAsDouble("Double"));
338 assertEquals(expected, mContentValues.getAsDouble("Double"));
  /external/parameter-framework/upstream/test/functional-tests/
FloatingPoint.cpp 164 REQUIRE_NOTHROW(handle.getAsDouble(getValueBack));
  /external/parameter-framework/upstream/parameter/include/
ElementHandle.h 213 bool getAsDouble(double &value, std::string &error) const;
  /cts/tests/tests/database/src/android/database/cts/
DatabaseUtilsTest.java 170 assertEquals(20.0, contentValues.getAsDouble(key));
173 assertNull(contentValues.getAsDouble(key));
176 assertEquals(0.0, contentValues.getAsDouble(key));
189 assertEquals(20.0, contentValues.getAsDouble("age"));
192 assertNull(contentValues.getAsDouble("Error Field Name"));
195 assertEquals(0.0, contentValues.getAsDouble("name"));
  /external/parameter-framework/upstream/parameter/
ElementHandle.cpp 309 bool ElementHandle::getAsDouble(double &value, string &error) const
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContentValues.java 213 public Double getAsDouble(String key) {
  /frameworks/base/core/java/android/content/
ContentValues.java 372 public Double getAsDouble(String key) {
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
EntrySchema.java 179 setIfNotNull(field, object, values.getAsDouble(columnName));
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
StringRef.h 566 bool getAsDouble(double &Result, bool AllowInexact = true) const;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
StringRef.h 566 bool getAsDouble(double &Result, bool AllowInexact = true) const;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
StringRef.h 566 bool getAsDouble(double &Result, bool AllowInexact = true) const;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringRef.h 566 bool getAsDouble(double &Result, bool AllowInexact = true) const;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/ADT/
StringRef.h 566 bool getAsDouble(double &Result, bool AllowInexact = true) const;
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/ADT/
StringRef.h 566 bool getAsDouble(double &Result, bool AllowInexact = true) const;
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/ADT/
StringRef.h 566 bool getAsDouble(double &Result, bool AllowInexact = true) const;
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ADT/
StringRef.h 566 bool getAsDouble(double &Result, bool AllowInexact = true) const;
  /external/caliper/lib/
gson-2.2.2.jar 

Completed in 770 milliseconds

1 2 3