Searched refs:cursor (Results 126 - 130 of 130) sorted by relevance

123456

/frameworks/base/core/java/android/provider/
H A DSettings.java6401 * @param cursor A cursor pointing to the row whose title should be
6402 * returned. The cursor must contain at least the {@link #TITLE}
6407 public static CharSequence getTitle(Context context, Cursor cursor) { argument
6408 int titleColumn = cursor.getColumnIndex(TITLE);
6409 int intentColumn = cursor.getColumnIndex(INTENT);
6412 "The cursor must contain the TITLE and INTENT columns.");
6415 String title = cursor.getString(titleColumn);
6420 String intentUri = cursor.getString(intentColumn);
/frameworks/base/core/java/android/widget/
H A DGridLayout.java1431 int cursor = result.length - 1;
1441 result[cursor--] = arc;
1461 assert cursor == -1;
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java1320 int cursor = result.length - 1;
1330 result[cursor--] = arc;
1350 assert cursor == -1;
/frameworks/base/core/java/android/content/
H A DContentResolver.java175 public static final String CURSOR_ITEM_BASE_TYPE = "vnd.android.cursor.item";
191 * in the cursor is the same.
193 public static final String CURSOR_DIR_BASE_TYPE = "vnd.android.cursor.dir";
484 // Wrap the cursor object into CursorWrapperInner object.
2252 CursorWrapperInner(Cursor cursor, IContentProvider icp) { argument
2253 super(cursor);
/frameworks/base/core/java/android/app/
H A DActivity.java735 ManagedCursor(Cursor cursor) { argument
736 mCursor = cursor;
1060 * where the cursor should be requeried (because you had deactivated it in
1734 * <p><strong>Warning:</strong> Do not call {@link Cursor#close()} on a cursor obtained using
1736 * you call {@link #stopManagingCursor} on a cursor from a managed query, the system <em>will
1737 * not</em> automatically close the cursor and, in that case, you must call
1774 * <p><strong>Warning:</strong> Do not call {@link Cursor#close()} on a cursor obtained using
1776 * you call {@link #stopManagingCursor} on a cursor from a managed query, the system <em>will
1777 * not</em> automatically close the cursor and, in that case, you must call
1815 * <p><strong>Warning:</strong> Do not call {@link Cursor#close()} on cursor obtaine
[all...]

Completed in 222 milliseconds

123456