/external/proguard/src/proguard/gui/splash/ |
VariableDouble.java | 33 public double getDouble(long time);
|
ConstantDouble.java | 45 public double getDouble(long time)
|
LinearDouble.java | 51 public double getDouble(long time)
|
ImageSprite.java | 68 double scale_x = scaleX.getDouble(time); 69 double scale_y = scaleY.getDouble(time);
|
VariableSizeFont.java | 55 float s = (float)size.getDouble(time);
|
ShadowedSprite.java | 69 double l = alpha.getDouble(time);
|
/external/jmonkeyengine/engine/src/networking/com/jme3/network/serializing/serializers/ |
DoubleSerializer.java | 48 return data.getDouble();
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ReorderingCursorWrapper.java | 67 public double getDouble(int column) { 68 return mCursor.getDouble(column);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/database/ |
EmptyCursor.java | 72 public double getDouble(int column) {
|
/pdk/apps/CameraITS/service/src/com/android/camera2/its/ |
ItsUtils.java | 51 return new int[]{(int)Math.floor(a.getDouble(0) * width + 0.5f), 52 (int)Math.floor(a.getDouble(1) * height + 0.5f), 53 (int)Math.floor(a.getDouble(2) * width + 0.5f), 54 (int)Math.floor(a.getDouble(3) * height + 0.5f) };
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorState.h | 63 double getDouble(const String& propertyName); 64 double getDouble(const String& propertyName, double defaultValue);
|
InspectorState.cpp | 100 double InspectorState::getDouble(const String& propertyName) 102 return getDouble(propertyName, 0); 105 double InspectorState::getDouble(const String& propertyName, double defaultValue)
|
/frameworks/base/core/java/android/database/ |
AbstractWindowedCursor.java | 85 public double getDouble(int columnIndex) { 87 return mWindow.getDouble(mPos, columnIndex);
|
CursorWrapper.java | 89 public double getDouble(int columnIndex) { 90 return mCursor.getDouble(columnIndex);
|
Cursor.java | 314 double getDouble(int columnIndex);
|
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
RootCursorWrapper.java | 93 public double getDouble(int column) { 94 return mCursor.getDouble(column);
|
FilteringCursorWrapper.java | 98 public double getDouble(int column) { 99 return mCursor.getDouble(column);
|
/cts/tests/tests/database/src/android/database/cts/ |
MatrixCursorTest.java | 195 assertEquals(-32768d, mMatrixCursor.getDouble(COLUMN0_INDEX), 0.0d); 196 assertEquals(0d, mMatrixCursor.getDouble(COLUMN1_INDEX), 0.0d); 197 assertEquals(32767d, mMatrixCursor.getDouble(COLUMN2_INDEX), 0.0d); 226 assertEquals(Double.MIN_VALUE, mMatrixCursor.getDouble(COLUMN0_INDEX), 0.0d); 227 assertEquals(0d, mMatrixCursor.getDouble(COLUMN1_INDEX), 0.0d); 228 assertEquals(Double.MAX_VALUE, mMatrixCursor.getDouble(COLUMN2_INDEX), 0.0d); 256 assertEquals(-1d, mMatrixCursor.getDouble(COLUMN0_INDEX), 0.0d); 257 assertEquals(0f, mMatrixCursor.getDouble(COLUMN1_INDEX), 0.0d); 258 assertEquals(1d, mMatrixCursor.getDouble(COLUMN2_INDEX), 0.0d);
|
CursorWindowTest.java | 85 assertEquals(0.0, window.getDouble(0, 0)); 96 assertEquals(0.0, window.getDouble(0, 0)); 207 assertEquals(NUMBER_DOUBLE_SCIENCE_STRING, Double.toString(cursorWindow.getDouble(0, 0))); 217 assertEquals(0.0, cursorWindow.getDouble(0, 0)); 222 // Test putNull, getString, getLong, getDouble, getBlob, getInd, getShort, getFloat, 229 assertEquals(0.0, cursorWindow.getDouble(0, 1)); 236 // Test putLong, getLong, getInt, getString , getShort, getFloat, getDouble, isBlob. 243 assertEquals(NUMBER_DOUBLE_SCIENCE, cursorWindow.getDouble(0, 2), 0.00000001); 263 assertEquals(NUMBER_DOUBLE_SCIENCE, cursorWindow.getDouble(0, 3), 0.00000001);
|
/libcore/luni/src/test/java/libcore/java/lang/reflect/ |
ArrayTest.java | 81 try { Array.getDouble(booleans, 0); fail(); } catch (IllegalArgumentException expected) {} 82 assertEquals((double) bytes[0], Array.getDouble(bytes, 0)); 83 assertEquals((double) chars[0], Array.getDouble(chars, 0)); 84 assertEquals(doubles[0], Array.getDouble(doubles, 0)); 85 assertEquals((double) floats[0], Array.getDouble(floats, 0)); 86 assertEquals((double) ints[0], Array.getDouble(ints, 0)); 87 assertEquals((double) longs[0], Array.getDouble(longs, 0)); 88 assertEquals((double) shorts[0], Array.getDouble(shorts, 0)); 89 try { Array.getDouble(null, 0); fail(); } catch (NullPointerException expected) {}
|
/frameworks/base/core/tests/coretests/src/android/database/ |
MatrixCursorTest.java | 43 assertEquals(0.0d, cursor.getDouble(0)); 155 assertEquals(0.0d, cursor.getDouble(5)); 164 assertEquals(0.0d, cursor.getDouble(5)); 173 assertEquals(0.0d, cursor.getDouble(5)); 206 assertEquals(5.0D, cursor.getDouble(5));
|
CursorWindowTest.java | 82 double db2 = window.getDouble(0, 0); 100 assertEquals(42.0, window.getDouble(0, 4));
|
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/ |
MockSuggestionProviderCursor.java | 56 public double getDouble(int column) { 57 return mRows.get(getPosition()).getDouble(column); 111 public double getDouble(int column) {
|
/packages/apps/UnifiedEmail/src/com/android/mail/content/ |
ThreadSafeCursorWrapper.java | 85 public double getDouble(int column) { 88 return super.getDouble(column);
|
/packages/apps/Gallery2/src/com/android/gallery3d/data/ |
LocalVideo.java | 105 latitude = cursor.getDouble(INDEX_LATITUDE); 106 longitude = cursor.getDouble(INDEX_LONGITUDE); 137 latitude = uh.update(latitude, cursor.getDouble(INDEX_LATITUDE)); 138 longitude = uh.update(longitude, cursor.getDouble(INDEX_LONGITUDE));
|