Searched refs:changeCursor (Results 1 - 17 of 17) 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.java173 * The results will be processed in the UI thread and changeCursor() will be called.
201 // changeCursor doesn't get called if cursor is null
208 changeCursor(null);
252 public void changeCursor(Cursor c) { method in class:SuggestionsAdapter
253 if (DBG) Log.d(LOG_TAG, "changeCursor(" + c + ")");
262 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.java159 mSuggestionsAdapter.changeCursor(null);
1104 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/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.java139 * The results will be processed in the UI thread and changeCursor() will be called.
166 // changeCursor doesn't get called if cursor is null
172 changeCursor(null);
212 public void changeCursor(Cursor c) { method in class:SuggestionsAdapter
213 if (DBG) Log.d(LOG_TAG, "changeCursor(" + c + ")");
222 super.changeCursor(c);
H A DSearchView.java172 mSuggestionsAdapter.changeCursor(null);
1069 mSuggestionsAdapter.changeCursor(null);
/frameworks/ex/common/java/com/android/common/widget/
H A DCompositeCursorAdapter.java207 public void changeCursor(int partition, Cursor cursor) { method in class:CompositeCursorAdapter
H A DGroupingListAdapter.java152 public void changeCursor(Cursor cursor) { method in class:GroupingListAdapter

Completed in 443 milliseconds