Home
last modified time | relevance | path

Searched defs:column (Results 1 – 25 of 56) sorted by relevance

123

/frameworks/base/core/java/android/database/
DMergeCursor.java97 public String getString(int column) in getString()
103 public short getShort(int column) in getShort()
109 public int getInt(int column) in getInt()
115 public long getLong(int column) in getLong()
121 public float getFloat(int column) in getFloat()
127 public double getDouble(int column) in getDouble()
133 public int getType(int column) { in getType()
138 public boolean isNull(int column) in isNull()
144 public byte[] getBlob(int column) in getBlob()
DMatrixCursor.java71 private Object get(int column) { in get()
266 public String getString(int column) { in getString()
273 public short getShort(int column) { in getShort()
281 public int getInt(int column) { in getInt()
289 public long getLong(int column) { in getLong()
297 public float getFloat(int column) { in getFloat()
305 public double getDouble(int column) { in getDouble()
313 public byte[] getBlob(int column) { in getBlob()
319 public int getType(int column) { in getType()
324 public boolean isNull(int column) { in isNull()
DCursorWindow_ravenwood.java80 private static boolean put(long windowPtr, String value, int type, int row, int column) { in put()
91 public static int nativeGetType(long windowPtr, int row, int column) { in nativeGetType()
101 int row, int column) { in nativePutString()
105 public static String nativeGetString(long windowPtr, int row, int column) { in nativeGetString()
114 public static boolean nativePutLong(long windowPtr, long value, int row, int column) { in nativePutLong()
118 public static long nativeGetLong(long windowPtr, int row, int column) { in nativeGetLong()
128 public static boolean nativePutDouble(long windowPtr, double value, int row, int column) { in nativePutDouble()
132 public static double nativeGetDouble(long windowPtr, int row, int column) { in nativeGetDouble()
142 public static boolean nativePutBlob(long windowPtr, byte[] value, int row, int column) { in nativePutBlob()
147 public static byte[] nativeGetBlob(long windowPtr, int row, int column) { in nativeGetBlob()
DAbstractCursor.java103 abstract public String getString(int column); in getString()
105 abstract public short getShort(int column); in getShort()
107 abstract public int getInt(int column); in getInt()
109 abstract public long getLong(int column); in getLong()
111 abstract public float getFloat(int column); in getFloat()
113 abstract public double getDouble(int column); in getDouble()
115 abstract public boolean isNull(int column); in isNull()
118 public int getType(int column) { in getType()
127 public byte[] getBlob(int column) { in getBlob()
DCursorWindow.java83 private static native byte[] nativeGetBlob(long windowPtr, int row, int column); in nativeGetBlob()
85 private static native String nativeGetString(long windowPtr, int row, int column); in nativeGetString()
87 private static native void nativeCopyStringToBuffer(long windowPtr, int row, int column, in nativeCopyStringToBuffer()
90 private static native boolean nativePutBlob(long windowPtr, byte[] value, int row, int column); in nativePutBlob()
93 int row, int column); in nativePutString()
116 private static native int nativeGetType(long windowPtr, int row, int column); in nativeGetType()
119 private static native long nativeGetLong(long windowPtr, int row, int column); in nativeGetLong()
122 private static native double nativeGetDouble(long windowPtr, int row, int column); in nativeGetDouble()
126 private static native boolean nativePutLong(long windowPtr, long value, int row, int column); in nativePutLong()
129 … private static native boolean nativePutDouble(long windowPtr, double value, int row, int column); in nativePutDouble()
[all …]
DDatabaseUtils.java1104 String column) { in cursorStringToContentValuesIfPresent()
1120 String column) { in cursorLongToContentValuesIfPresent()
1136 String column) { in cursorShortToContentValuesIfPresent()
1152 String column) { in cursorIntToContentValuesIfPresent()
1168 String column) { in cursorFloatToContentValuesIfPresent()
1184 String column) { in cursorDoubleToContentValuesIfPresent()
/frameworks/base/core/java/com/android/internal/database/
DSortCursor.java189 public String getString(int column) in getString()
195 public short getShort(int column) in getShort()
201 public int getInt(int column) in getInt()
207 public long getLong(int column) in getLong()
213 public float getFloat(int column) in getFloat()
219 public double getDouble(int column) in getDouble()
225 public int getType(int column) { in getType()
230 public boolean isNull(int column) in isNull()
236 public byte[] getBlob(int column) in getBlob()
/frameworks/base/libs/androidfw/
DCursorWindow.cpp343 CursorWindow::FieldSlot* CursorWindow::getFieldSlot(uint32_t row, uint32_t column) { in getFieldSlot()
358 status_t CursorWindow::putBlob(uint32_t row, uint32_t column, const void* value, size_t size) { in putBlob()
362 status_t CursorWindow::putString(uint32_t row, uint32_t column, const char* value, in putString()
367 status_t CursorWindow::putBlobOrString(uint32_t row, uint32_t column, in putBlobOrString()
392 status_t CursorWindow::putLong(uint32_t row, uint32_t column, int64_t value) { in putLong()
407 status_t CursorWindow::putDouble(uint32_t row, uint32_t column, double value) { in putDouble()
422 status_t CursorWindow::putNull(uint32_t row, uint32_t column) { in putNull()
/frameworks/base/core/java/android/text/
DPackedIntVector.java72 public int getValue(int row, int column) { in getValue()
103 public void setValue(int row, int column, int value) { in setValue()
128 private void setValueInternal(int row, int column, int value) { in setValueInternal()
154 public void adjustValuesBelow(int startRow, int column, int delta) { in adjustValuesBelow()
296 private final void moveValueGapTo(int column, int where) { in moveValueGapTo()
DPackedObjectVector.java47 getValue(int row, int column) in getValue()
58 setValue(int row, int column, E value) in setValue()
/frameworks/base/core/tests/coretests/src/android/widget/focus/
DLinearLayoutGrid.java40 public Button getButtonAt(int column, int row) { in getButtonAt()
52 private LinearLayout getColumn(int column) { in getColumn()
/frameworks/base/media/java/android/mtp/
DMtpPropertyGroup.java40 int column; field in MtpPropertyGroup.Property
42 Property(int code, int type, int column) { in Property()
75 String column = null; in createProperty() local
/frameworks/base/core/jni/
Dandroid_database_CursorWindow.cpp56 static void throwExceptionWithRowCol(JNIEnv* env, jint row, jint column) { in throwExceptionWithRowCol()
191 jint row, jint column) { in nativeGetType()
206 jint row, jint column) { in nativeGetBlob()
245 jint row, jint column) { in nativeGetString()
341 jint row, jint column, jobject bufferObj) { in nativeCopyStringToBuffer()
380 jint row, jint column) { in nativeGetLong()
411 jint row, jint column) { in nativeGetDouble()
442 jbyteArray valueObj, jint row, jint column) { in nativePutBlob()
460 jstring valueObj, jint row, jint column) { in nativePutString()
482 jlong value, jint row, jint column) { in nativePutLong()
[all …]
/frameworks/ex/common/java/com/android/common/content/
DProjectionMap.java32 public Builder add(String column) { in add()
79 private void putColumn(String alias, String column) { in putColumn()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/panels/ui/model/
DTileGridCell.kt43 val column: Int, constant in com.android.systemui.qs.panels.ui.model.TileGridCell
88 var column = 0 in List() variable
/frameworks/base/core/java/android/hardware/camera2/params/
DLensShadingMap.java135 public float getGainFactor(final int colorChannel, final int column, final int row) { in getGainFactor()
163 public RggbChannelVector getGainFactorVector(final int column, final int row) { in getGainFactorVector()
DBlackLevelPattern.java75 public int getOffsetForIndex(int column, int row) { in getOffsetForIndex()
/frameworks/base/core/java/android/util/
DMonthDisplayHelper.java135 public int getDayAt(int row, int column) { in getDayAt()
180 public boolean isWithinCurrentMonth(int row, int column) { in isWithinCurrentMonth()
DDayOfMonthCursor.java92 public boolean isSelected(int row, int column) { in isSelected()
/frameworks/base/packages/SystemUI/compose/core/src/com/android/compose/grid/
DGrids.kt147 val column: Int in Grid() constant
166 for (column in sizeCache.columnWidths.indices) { in Grid() variable
180 repeat(columns) { column -> in Grid() method
/frameworks/native/services/surfaceflinger/tests/utils/
DTransactionUtils.h64 for (int32_t column = 0; column < width; column++) { in fillANativeWindowBufferColor() local
91 for (int32_t column = 0; column < width; column++) { in fillGraphicBufferColor() local
/frameworks/base/core/java/android/view/animation/
DGridLayoutAnimationController.java307 final int column = getTransformedColumnIndex(params); in getDelayForView() local
409 public int column; field in GridLayoutAnimationController.AnimationParameters
/frameworks/base/core/java/android/database/sqlite/
DSQLiteQueryBuilder.java427 String column = columns[i]; in appendColumns() local
788 final String column = rawValues.keyAt(i); in enforceStrictColumns() local
1079 @NonNull String column) { in maybeWithOperator()
1118 final String column = computeSingleProjection(userColumn); in computeSingleProjectionOrThrow() local
1133 String column = mProjectionMap.get(userColumn); in computeSingleProjection() local
/frameworks/proto_logging/stats/stats_log_api_gen/
Dutils.h126 void AddError(const std::string& filename, int line, int column, in AddError()
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternView.java196 final int column; field in LockPatternView.Cell
215 private Cell(int row, int column) { in Cell()
229 public static Cell of(int row, int column) { in of()
234 private static void checkRange(int row, int column) { in checkRange()
1113 private boolean isVertex(int row, int column) { in isVertex()
1369 private float getCenterXForColumn(int column) { in getCenterXForColumn()

123