| /frameworks/base/core/java/android/database/ |
| D | CursorWindow.java | 71 private static native int nativeGetType(long windowPtr, int row, int column); in nativeGetType() 72 private static native byte[] nativeGetBlob(long windowPtr, int row, int column); in nativeGetBlob() 73 private static native String nativeGetString(long windowPtr, int row, int column); in nativeGetString() 74 private static native long nativeGetLong(long windowPtr, int row, int column); in nativeGetLong() 75 private static native double nativeGetDouble(long windowPtr, int row, int column); in nativeGetDouble() 76 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column, in nativeCopyStringToBuffer() 79 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column); in nativePutBlob() 80 … private static native boolean nativePutString(long windowPtr, String value, int row, int column); in nativePutString() 81 private static native boolean nativePutLong(long windowPtr, long value, int row, int column); in nativePutLong() 82 … private static native boolean nativePutDouble(long windowPtr, double value, int row, int column); in nativePutDouble() [all …]
|
| D | MergeCursor.java | 96 public String getString(int column) in getString() 102 public short getShort(int column) in getShort() 108 public int getInt(int column) in getInt() 114 public long getLong(int column) in getLong() 120 public float getFloat(int column) in getFloat() 126 public double getDouble(int column) in getDouble() 132 public int getType(int column) { in getType() 137 public boolean isNull(int column) in isNull() 143 public byte[] getBlob(int column) in getBlob()
|
| D | MatrixCursor.java | 64 private Object get(int column) { in get() 253 public String getString(int column) { in getString() 260 public short getShort(int column) { in getShort() 268 public int getInt(int column) { in getInt() 276 public long getLong(int column) { in getLong() 284 public float getFloat(int column) { in getFloat() 292 public double getDouble(int column) { in getDouble() 300 public byte[] getBlob(int column) { in getBlob() 306 public int getType(int column) { in getType() 311 public boolean isNull(int column) { in isNull()
|
| D | AbstractCursor.java | 83 abstract public String getString(int column); in getString() 84 abstract public short getShort(int column); in getShort() 85 abstract public int getInt(int column); in getInt() 86 abstract public long getLong(int column); in getLong() 87 abstract public float getFloat(int column); in getFloat() 88 abstract public double getDouble(int column); in getDouble() 89 abstract public boolean isNull(int column); in isNull() 91 public int getType(int column) { in getType() 99 public byte[] getBlob(int column) { in getBlob()
|
| D | DatabaseUtils.java | 887 String column) { in cursorStringToContentValuesIfPresent() 903 String column) { in cursorLongToContentValuesIfPresent() 919 String column) { in cursorShortToContentValuesIfPresent() 935 String column) { in cursorIntToContentValuesIfPresent() 951 String column) { in cursorFloatToContentValuesIfPresent() 967 String column) { in cursorDoubleToContentValuesIfPresent()
|
| /frameworks/base/packages/DocumentsUI/src/com/android/documentsui/ |
| D | RootCursorWrapper.java | 93 public double getDouble(int column) { in getDouble() 98 public float getFloat(int column) { in getFloat() 103 public int getInt(int column) { in getInt() 108 public long getLong(int column) { in getLong() 113 public short getShort(int column) { in getShort() 118 public String getString(int column) { in getString() 129 public int getType(int column) { in getType() 134 public boolean isNull(int column) { in isNull()
|
| D | FilteringCursorWrapper.java | 98 public double getDouble(int column) { in getDouble() 103 public float getFloat(int column) { in getFloat() 108 public int getInt(int column) { in getInt() 113 public long getLong(int column) { in getLong() 118 public short getShort(int column) { in getShort() 123 public String getString(int column) { in getString() 128 public int getType(int column) { in getType() 133 public boolean isNull(int column) { in isNull()
|
| D | SortingCursorWrapper.java | 128 public double getDouble(int column) { in getDouble() 133 public float getFloat(int column) { in getFloat() 138 public int getInt(int column) { in getInt() 143 public long getLong(int column) { in getLong() 148 public short getShort(int column) { in getShort() 153 public String getString(int column) { in getString() 158 public int getType(int column) { in getType() 163 public boolean isNull(int column) { in isNull()
|
| /frameworks/base/core/java/com/android/internal/database/ |
| D | SortCursor.java | 185 public String getString(int column) in getString() 191 public short getShort(int column) in getShort() 197 public int getInt(int column) in getInt() 203 public long getLong(int column) in getLong() 209 public float getFloat(int column) in getFloat() 215 public double getDouble(int column) in getDouble() 221 public int getType(int column) { in getType() 226 public boolean isNull(int column) in isNull() 232 public byte[] getBlob(int column) in getBlob()
|
| /frameworks/base/media/java/android/mtp/ |
| D | MtpPropertyGroup.java | 41 int column; field in MtpPropertyGroup.Property 43 Property(int code, int type, int column) { in Property() 92 String column = null; in createProperty() local 200 private String queryString(int id, String column) { in queryString() 221 private String queryAudio(int id, String column) { in queryAudio() 263 private Long queryLong(int id, String column) { in queryLong() 359 int column = property.column; in getPropertyList() local
|
| /frameworks/base/libs/androidfw/ |
| D | CursorWindow.cpp | 257 CursorWindow::FieldSlot* CursorWindow::getFieldSlot(uint32_t row, uint32_t column) { in getFieldSlot() 273 status_t CursorWindow::putBlob(uint32_t row, uint32_t column, const void* value, size_t size) { in putBlob() 277 status_t CursorWindow::putString(uint32_t row, uint32_t column, const char* value, in putString() 282 status_t CursorWindow::putBlobOrString(uint32_t row, uint32_t column, in putBlobOrString() 306 status_t CursorWindow::putLong(uint32_t row, uint32_t column, int64_t value) { in putLong() 321 status_t CursorWindow::putDouble(uint32_t row, uint32_t column, double value) { in putDouble() 336 status_t CursorWindow::putNull(uint32_t row, uint32_t column) { in putNull()
|
| /frameworks/base/core/tests/coretests/src/android/widget/focus/ |
| D | LinearLayoutGrid.java | 39 public Button getButtonAt(int column, int row) { in getButtonAt() 51 private LinearLayout getColumn(int column) { in getColumn()
|
| /frameworks/base/core/java/android/text/ |
| D | PackedIntVector.java | 67 public int getValue(int row, int column) { in getValue() 98 public void setValue(int row, int column, int value) { in setValue() 123 private void setValueInternal(int row, int column, int value) { in setValueInternal() 149 public void adjustValuesBelow(int startRow, int column, int delta) { in adjustValuesBelow() 291 private final void moveValueGapTo(int column, int where) { in moveValueGapTo()
|
| D | PackedObjectVector.java | 46 getValue(int row, int column) in getValue() 57 setValue(int row, int column, E value) in setValue()
|
| /frameworks/base/core/jni/ |
| D | android_database_CursorWindow.cpp | 48 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) { in throwExceptionWithRowCol() 154 jint row, jint column) { in nativeGetType() 169 jint row, jint column) { in nativeGetBlob() 204 jint row, jint column) { in nativeGetString() 296 jint row, jint column, jobject bufferObj) { in nativeCopyStringToBuffer() 335 jint row, jint column) { in nativeGetLong() 366 jint row, jint column) { in nativeGetDouble() 397 jbyteArray valueObj, jint row, jint column) { in nativePutBlob() 415 jstring valueObj, jint row, jint column) { in nativePutString() 437 jlong value, jint row, jint column) { in nativePutLong() [all …]
|
| /frameworks/ex/common/java/com/android/common/content/ |
| D | ProjectionMap.java | 32 public Builder add(String column) { in add() 79 private void putColumn(String alias, String column) { in putColumn()
|
| /frameworks/base/core/java/android/hardware/camera2/params/ |
| D | LensShadingMap.java | 128 public float getGainFactor(final int colorChannel, final int column, final int row) { in getGainFactor() 156 public RggbChannelVector getGainFactorVector(final int column, final int row) { in getGainFactorVector()
|
| D | BlackLevelPattern.java | 66 public int getOffsetForIndex(int column, int row) { in getOffsetForIndex()
|
| D | ColorSpaceTransform.java | 135 public Rational getElement(int column, int row) { in getElement()
|
| /frameworks/support/v4/kitkat/android/support/v4/provider/ |
| D | DocumentsContractApi19.java | 142 private static String queryForString(Context context, Uri self, String column, in queryForString() 162 private static int queryForInt(Context context, Uri self, String column, in queryForInt() 167 private static long queryForLong(Context context, Uri self, String column, in queryForLong()
|
| /frameworks/base/core/java/android/util/ |
| D | MonthDisplayHelper.java | 134 public int getDayAt(int row, int column) { in getDayAt() 179 public boolean isWithinCurrentMonth(int row, int column) { in isWithinCurrentMonth()
|
| D | DayOfMonthCursor.java | 91 public boolean isSelected(int row, int column) { in isSelected()
|
| /frameworks/base/core/java/android/view/animation/ |
| D | GridLayoutAnimationController.java | 305 final int column = getTransformedColumnIndex(params); in getDelayForView() local 407 public int column; field in GridLayoutAnimationController.AnimationParameters
|
| /frameworks/base/core/java/com/android/internal/widget/ |
| D | LockPatternView.java | 133 int column; field in LockPatternView.Cell 149 private Cell(int row, int column) { in Cell() 167 public static synchronized Cell of(int row, int column) { in of() 172 private static void checkRange(int row, int column) { in checkRange() 876 private float getCenterXForColumn(int column) { in getCenterXForColumn()
|
| /frameworks/opt/photoviewer/src/com/android/ex/photo/adapters/ |
| D | PhotoPagerAdapter.java | 121 private String getString(Cursor cursor, String column) { in getString()
|