HomeSort by relevance Sort by last modified time
    Searched defs:putDouble (Results 1 - 25 of 30) sorted by null

1 2

  /libcore/luni/src/main/java/java/nio/
ReadOnlyDirectByteBuffer.java 90 public ByteBuffer putDouble(double value) {
95 public ByteBuffer putDouble(int index, double value) {
ReadOnlyHeapByteBuffer.java 99 public ByteBuffer putDouble(double value) {
104 public ByteBuffer putDouble(int index, double value) {
ReadWriteDirectByteBuffer.java 259 public ByteBuffer putDouble(double value) {
270 public ByteBuffer putDouble(int index, double value) {
ReadWriteHeapByteBuffer.java 136 public ByteBuffer putDouble(double value) {
141 public ByteBuffer putDouble(int index, double value) {
MappedByteBufferAdapter.java 298 public ByteBuffer putDouble(double value) {
301 this.wrapped.putDouble(value);
307 public ByteBuffer putDouble(int index, double value) {
310 this.wrapped.putDouble(index, value);
ByteBuffer.java 857 public abstract ByteBuffer putDouble(double value);
876 public abstract ByteBuffer putDouble(int index, double value);
    [all...]
  /frameworks/base/core/java/android/database/
CursorWindow.java 185 public boolean putDouble(double value, int row, int col) {
  /frameworks/base/core/jni/
CursorWindow.cpp 331 bool CursorWindow::putDouble(unsigned int row, unsigned int col, double value)
  /frameworks/base/core/tests/coretests/src/android/database/
CursorWindowTest.java 99 assertTrue(window.putDouble(db1, 0, 0));
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListOfInternalSelectionViews.java 106 bundle.putDouble(BUNDLE_PARAM_ITEM_SCREEN_HEIGHT_FACTOR, itemScreenHeightFactor);
  /libcore/luni/src/main/java/java/util/prefs/
Preferences.java 625 public abstract void putDouble(String key, double value);
    [all...]
AbstractPreferences.java 675 public void putDouble(String key, double value) {
  /libcore/luni/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
PreferencesTest.java 456 method = "putDouble",
573 p.putDouble(null, 1);
808 pref.putDouble("testGetDoubleKey3", 1);
    [all...]
AbstractPreferencesTest.java 154 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
196 pref.putDouble(keyArray[1], new Double(9.10938188e-31));
310 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
388 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
466 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
542 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
572 method = "putDouble",
576 pref.putDouble("DoubleValue", new Double(9.10938188e-31));
582 pref.putDouble(null, new Double(0.1));
596 pref.putDouble(new String(sb), new Double(0.1))
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
AbstractWindowedCursorTest.java 200 assertTrue(mWindow.putDouble((double) f1oatNumber, ROW_INDEX0, COLUMN_INDEX0));
215 assertTrue(mWindow.putDouble(db1, ROW_INDEX0, COLUMN_INDEX0));
CursorWindowTest.java 351 method = "putDouble",
480 // Test putDouble
481 assertTrue(cursorWindow.putDouble(NUMBER_DOUBLE_SCIENCE, 0, 3));
  /development/samples/LunarLander/src/com/example/android/lunarlander/
LunarView.java 382 map.putDouble(KEY_X, Double.valueOf(mX));
383 map.putDouble(KEY_Y, Double.valueOf(mY));
384 map.putDouble(KEY_DX, Double.valueOf(mDX));
385 map.putDouble(KEY_DY, Double.valueOf(mDY));
386 map.putDouble(KEY_HEADING, Double.valueOf(mHeading));
395 map.putDouble(KEY_FUEL, Double.valueOf(mFuel));
    [all...]
  /frameworks/base/core/java/android/os/
Bundle.java 456 public void putDouble(String key, double value) {
    [all...]
  /frameworks/base/core/java/android/content/
Intent.java     [all...]
SyncStorageEngine.java     [all...]
  /libcore/luni/src/test/java/org/apache/harmony/nio/tests/java/nio/
ByteBufferTest.java     [all...]
  /cts/tests/tests/os/src/android/os/cts/
BundleTest.java 534 notes = "getDouble should return the Double set by putDouble",
540 notes = "getDouble should return the Double set by putDouble",
541 method = "putDouble",
549 mBundle.putDouble(KEY, d);
558 notes = "getDouble should return the Double set by putDouble",
564 notes = "getDouble should return the Double set by putDouble",
565 method = "putDouble",
574 mBundle.putDouble(KEY, d2);
    [all...]
  /prebuilt/common/osgi/
osgi.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 

Completed in 535 milliseconds

1 2