Searched defs:changeCursor (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DCursorFilter.java35 void changeCursor(Cursor cursor); method in interface:CursorFilter.CursorFilterClient
67 mClient.changeCursor((Cursor) results.values);
H A DCursorAdapter.java312 public void changeCursor(Cursor cursor) { method in class:CursorAdapter
321 * {@link #changeCursor(Cursor)}, the returned old Cursor is <em>not</em>
376 * After this method returns the resulting cursor is passed to {@link #changeCursor(Cursor)}
H A DCursorTreeAdapter.java140 mGroupCursorHelper.changeCursor(cursor, false);
164 childrenCursorHelper.changeCursor(childrenCursor, false);
380 * @see CursorAdapter#changeCursor(Cursor)
382 public void changeCursor(Cursor cursor) { method in class:CursorTreeAdapter
383 mGroupCursorHelper.changeCursor(cursor, true);
453 void changeCursor(Cursor cursor, boolean releaseCursors) { method in class:CursorTreeAdapter.MyCursorHelper
H A DSuggestionsAdapter.java175 * The results will be processed in the UI thread and changeCursor() will be called.
203 // changeCursor doesn't get called if cursor is null
210 changeCursor(null);
254 public void changeCursor(Cursor c) { method in class:SuggestionsAdapter
255 if (DBG) Log.d(LOG_TAG, "changeCursor(" + c + ")");
264 super.changeCursor(c);
/frameworks/support/v4/java/android/support/v4/widget/
H A DCursorFilter.java36 void changeCursor(Cursor cursor); method in interface:CursorFilter.CursorFilterClient
68 mClient.changeCursor((Cursor) results.values);
H A DCursorAdapter.java314 public void changeCursor(Cursor cursor) { method in class:CursorAdapter
323 * {@link #changeCursor(Cursor)}, the returned old Cursor is <em>not</em>
378 * After this method returns the resulting cursor is passed to {@link #changeCursor(Cursor)}
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DCursorObjectAdapter.java57 public void changeCursor(Cursor cursor) { method in class:CursorObjectAdapter
70 * Swap in a new Cursor, returning the old Cursor. Unlike changeCursor(Cursor),
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java216 public void changeCursor(int partition, Cursor cursor) { method in class:CompositeCursorAdapter
H A DGroupingListAdapter.java152 public void changeCursor(Cursor cursor) { method in class:GroupingListAdapter
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DSuggestionsAdapter.java141 * The results will be processed in the UI thread and changeCursor() will be called.
168 // changeCursor doesn't get called if cursor is null
174 changeCursor(null);
214 public void changeCursor(Cursor c) { method in class:SuggestionsAdapter
215 if (DBG) Log.d(LOG_TAG, "changeCursor(" + c + ")");
224 super.changeCursor(c);

Completed in 710 milliseconds