Searched refs:changeCursor (Results 1 - 18 of 18) sorted by relevance

/frameworks/ex/common/tests/src/com/android/common/widget/
H A DCompositeCursorAdapterTest.java85 adapter.changeCursor(0, makeCursor("a", 2));
86 adapter.changeCursor(1, makeCursor("b", 3));
96 adapter.changeCursor(0, makeCursor("a", 1));
97 adapter.changeCursor(1, makeCursor("b", 2));
111 adapter.changeCursor(0, makeCursor("a", 2));
112 adapter.changeCursor(1, makeCursor("b", 3));
122 adapter.changeCursor(0, makeCursor("a", 1));
123 adapter.changeCursor(1, makeCursor("b", 2));
137 adapter.changeCursor(1, makeCursor("a", 2));
147 adapter.changeCursor(
[all...]
H A DGroupingListAdapterTests.java118 mAdapter.changeCursor(mCursor);
128 mAdapter.changeCursor(mCursor);
137 mAdapter.changeCursor(mCursor);
149 mAdapter.changeCursor(mCursor);
160 mAdapter.changeCursor(mCursor);
170 mAdapter.changeCursor(mCursor);
184 mAdapter.changeCursor(mCursor);
194 mAdapter.changeCursor(mCursor);
208 mAdapter.changeCursor(mCursor);
221 mAdapter.changeCursor(mCurso
[all...]
/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 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 DSimpleCursorAdapter.java363 // super.changeCursor() will notify observers before we have
367 super.changeCursor(c);
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);
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 DSearchView.java172 mSuggestionsAdapter.changeCursor(null);
1161 mSuggestionsAdapter.changeCursor(null);
/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 DSimpleCursorAdapter.java346 super.changeCursor(c);
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/base/core/tests/coretests/src/android/widget/
H A DSimpleCursorAdapterTest.java108 * Test changeCursor() with live cursor
120 ca.changeCursor(c2);
127 * Test changeCursor() with null cursor
137 ca.changeCursor(null);
144 * Test changeCursor() with differing column layout. This confirms that the Adapter can
161 ca.changeCursor(c2);
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java432 changeCursor(0, defaultPartitionCursor);
449 changeCursor(i, null);
453 changeCursor(i, null);
486 changeCursor(partitionIndex, createLoadingCursor());
511 changeCursor(partitionIndex, removeDuplicatesAndTruncate(partitionIndex, cursor));
/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);
H A DSearchView.java187 mSuggestionsAdapter.changeCursor(null);
1075 mSuggestionsAdapter.changeCursor(null);
/frameworks/ex/common/java/com/android/common/widget/
H A DGroupingListAdapter.java152 public void changeCursor(Cursor cursor) { method in class:GroupingListAdapter
H A DCompositeCursorAdapter.java216 public void changeCursor(int partition, Cursor cursor) { method in class:CompositeCursorAdapter

Completed in 4765 milliseconds