Searched defs:columnIndex (Results 1 - 17 of 17) sorted by relevance

/frameworks/base/core/java/android/database/
H A DAbstractWindowedCursor.java43 public byte[] getBlob(int columnIndex) { argument
45 return mWindow.getBlob(mPos, columnIndex);
49 public String getString(int columnIndex) { argument
51 return mWindow.getString(mPos, columnIndex);
55 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) { argument
57 mWindow.copyStringToBuffer(mPos, columnIndex, buffer);
61 public short getShort(int columnIndex) { argument
63 return mWindow.getShort(mPos, columnIndex);
67 public int getInt(int columnIndex) { argument
69 return mWindow.getInt(mPos, columnIndex);
73 getLong(int columnIndex) argument
79 getFloat(int columnIndex) argument
85 getDouble(int columnIndex) argument
91 isNull(int columnIndex) argument
100 isBlob(int columnIndex) argument
108 isString(int columnIndex) argument
116 isLong(int columnIndex) argument
124 isFloat(int columnIndex) argument
129 getType(int columnIndex) argument
[all...]
H A DCursor.java198 * @param columnIndex the zero-based index of the target column.
201 String getColumnName(int columnIndex); argument
224 * @param columnIndex the zero-based index of the target column.
227 byte[] getBlob(int columnIndex); argument
236 * @param columnIndex the zero-based index of the target column.
239 String getString(int columnIndex); argument
245 * @param columnIndex the zero-based index of the target column.
249 void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer); argument
259 * @param columnIndex the zero-based index of the target column.
262 short getShort(int columnIndex); argument
275 getInt(int columnIndex) argument
288 getLong(int columnIndex) argument
301 getFloat(int columnIndex) argument
314 getDouble(int columnIndex) argument
335 getType(int columnIndex) argument
343 isNull(int columnIndex) argument
[all...]
H A DCursorWrapper.java91 public String getColumnName(int columnIndex) { argument
92 return mCursor.getColumnName(columnIndex);
101 public double getDouble(int columnIndex) { argument
102 return mCursor.getDouble(columnIndex);
116 public float getFloat(int columnIndex) { argument
117 return mCursor.getFloat(columnIndex);
121 public int getInt(int columnIndex) { argument
122 return mCursor.getInt(columnIndex);
126 public long getLong(int columnIndex) { argument
127 return mCursor.getLong(columnIndex);
131 getShort(int columnIndex) argument
136 getString(int columnIndex) argument
141 copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) argument
146 getBlob(int columnIndex) argument
176 getType(int columnIndex) argument
181 isNull(int columnIndex) argument
[all...]
H A DAbstractCursor.java189 public void copyStringToBuffer(int columnIndex, CharArrayBuffer buffer) { argument
191 String result = getString(columnIndex);
339 public String getColumnName(int columnIndex) { argument
340 return getColumnNames()[columnIndex];
438 protected boolean isFieldUpdated(int columnIndex) { argument
446 protected Object getUpdatedField(int columnIndex) { argument
/frameworks/base/core/java/android/widget/
H A DSimpleCursorAdapter.java393 * @param columnIndex the column at which the data can be found in the cursor
397 boolean setViewValue(View view, Cursor cursor, int columnIndex); argument
H A DSimpleCursorTreeAdapter.java320 * @param columnIndex the column at which the data can be found in the cursor
324 boolean setViewValue(View view, Cursor cursor, int columnIndex); argument
H A DTableLayout.java154 int columnIndex = Integer.parseInt(columnIdentifier);
156 if (columnIndex >= 0) {
159 columns.put(columnIndex, true);
282 * @param columnIndex the index of the column
287 public void setColumnCollapsed(int columnIndex, boolean isCollapsed) { argument
289 mCollapsedColumns.put(columnIndex, isCollapsed);
295 ((TableRow) view).setColumnCollapsed(columnIndex, isCollapsed);
305 * @param columnIndex the index of the column
308 public boolean isColumnCollapsed(int columnIndex) { argument
309 return mCollapsedColumns.get(columnIndex);
324 setColumnStretchable(int columnIndex, boolean isStretchable) argument
335 isColumnStretchable(int columnIndex) argument
351 setColumnShrinkable(int columnIndex, boolean isShrinkable) argument
362 isColumnShrinkable(int columnIndex) argument
[all...]
H A DTableRow.java96 * @param columnIndex the index of the column
100 void setColumnCollapsed(int columnIndex, boolean collapsed) { argument
101 View child = getVirtualChildAt(columnIndex);
/frameworks/base/test-runner/src/android/test/mock/
H A DMockCursor.java54 public String getColumnName(int columnIndex) { argument
69 public boolean isNull(int columnIndex) { argument
74 public int getInt(int columnIndex) { argument
79 public long getLong(int columnIndex) { argument
84 public short getShort(int columnIndex) { argument
89 public float getFloat(int columnIndex) { argument
94 public double getDouble(int columnIndex) { argument
99 public byte[] getBlob(int columnIndex) { argument
104 public String getString(int columnIndex) { argument
174 public void copyStringToBuffer(int columnIndex, CharArrayBuffe argument
241 getType(int columnIndex) argument
[all...]
/frameworks/support/v4/api21/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatApi21.java48 public static Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, argument
50 return AccessibilityNodeInfo.CollectionItemInfo.obtain(rowIndex, rowSpan, columnIndex,
/frameworks/support/v4/java/android/support/v4/widget/
H A DSimpleCursorAdapter.java373 * @param columnIndex the column at which the data can be found in the cursor
377 boolean setViewValue(View view, Cursor cursor, int columnIndex); argument
/frameworks/support/v4/kitkat/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompatKitKat.java65 public static Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, argument
67 return AccessibilityNodeInfo.CollectionItemInfo.obtain(rowIndex, rowSpan, columnIndex,
/frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
H A DPduPersister.java306 Cursor c, int columnIndex,
308 String s = c.getString(columnIndex);
319 Cursor c, int columnIndex,
321 String s = c.getString(columnIndex);
328 Cursor c, int columnIndex,
330 if (!c.isNull(columnIndex)) {
331 int b = c.getInt(columnIndex);
337 Cursor c, int columnIndex,
339 if (!c.isNull(columnIndex)) {
340 long l = c.getLong(columnIndex);
305 setEncodedStringValueToHeaders( Cursor c, int columnIndex, PduHeaders headers, int mapColumn) argument
318 setTextStringToHeaders( Cursor c, int columnIndex, PduHeaders headers, int mapColumn) argument
327 setOctetToHeaders( Cursor c, int columnIndex, PduHeaders headers, int mapColumn) argument
336 setLongToHeaders( Cursor c, int columnIndex, PduHeaders headers, int mapColumn) argument
345 getIntegerFromPartColumn(Cursor c, int columnIndex) argument
352 getByteArrayFromPartColumn(Cursor c, int columnIndex) argument
[all...]
/frameworks/base/core/java/android/app/
H A DDownloadManager.java1276 public int getInt(int columnIndex) { argument
1277 return (int) getLong(columnIndex);
1281 public long getLong(int columnIndex) { argument
1282 if (getColumnName(columnIndex).equals(COLUMN_REASON)) {
1284 } else if (getColumnName(columnIndex).equals(COLUMN_STATUS)) {
1287 return super.getLong(columnIndex);
1292 public String getString(int columnIndex) { argument
1293 return (getColumnName(columnIndex).equals(COLUMN_LOCAL_URI)) ? getLocalUri() :
1294 super.getString(columnIndex);
/frameworks/support/v4/java/android/support/v4/view/accessibility/
H A DAccessibilityNodeInfoCompat.java422 int columnIndex, int columnSpan, boolean heading, boolean selected) {
424 columnIndex, columnSpan, heading, selected));
571 public Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, argument
1026 public Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, argument
1636 public Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, argument
1639 .obtainCollectionItemInfo(rowIndex, rowSpan, columnIndex, columnSpan, heading);
1797 public Object obtainCollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, argument
1800 columnIndex, columnSpan, heading, selected);
421 obtain(int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading, boolean selected) argument
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java3962 * @param columnIndex The column index at which the item is located.
3967 int columnIndex, int columnSpan, boolean heading) {
3968 return obtain(rowIndex, rowSpan, columnIndex, columnSpan, heading, false);
3976 * @param columnIndex The column index at which the item is located.
3982 int columnIndex, int columnSpan, boolean heading, boolean selected) {
3986 rowIndex, rowSpan, columnIndex, columnSpan, heading, selected);
3991 info.mColumnIndex = columnIndex;
4010 * @param columnIndex The column index at which the item is located.
4014 private CollectionItemInfo(int rowIndex, int rowSpan, int columnIndex, int columnSpan, argument
4018 mColumnIndex = columnIndex;
3966 obtain(int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading) argument
3981 obtain(int rowIndex, int rowSpan, int columnIndex, int columnSpan, boolean heading, boolean selected) argument
[all...]
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...

Completed in 456 milliseconds