HomeSort by relevance Sort by last modified time
    Searched full:changecursor (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /frameworks/ex/common/tests/src/com/android/common/widget/
CompositeCursorAdapterTest.java 85 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(0, makeCursor("a", 1))
    [all...]
GroupingListAdapterTests.java 118 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(mCursor)
    [all...]
  /packages/apps/Dialer/tests/src/com/android/dialer/calllog/
GroupingListAdapterTests.java 107 mAdapter.changeCursor(mCursor);
117 mAdapter.changeCursor(mCursor);
126 mAdapter.changeCursor(mCursor);
138 mAdapter.changeCursor(mCursor);
149 mAdapter.changeCursor(mCursor);
159 mAdapter.changeCursor(mCursor);
173 mAdapter.changeCursor(mCursor);
183 mAdapter.changeCursor(mCursor);
197 mAdapter.changeCursor(mCursor);
210 mAdapter.changeCursor(mCursor)
    [all...]
CallLogAdapterTest.java 93 mAdapter.changeCursor(mCursor);
112 mAdapter.changeCursor(mCursor);
131 mAdapter.changeCursor(mCursor);
147 mAdapter.changeCursor(mCursor);
163 mAdapter.changeCursor(mCursor);
  /frameworks/base/core/java/android/widget/
CursorFilter.java 35 void changeCursor(Cursor cursor);
67 mClient.changeCursor((Cursor) results.values);
CursorTreeAdapter.java 140 mGroupCursorHelper.changeCursor(cursor, false);
164 childrenCursorHelper.changeCursor(childrenCursor, false);
380 * @see CursorAdapter#changeCursor(Cursor)
382 public void changeCursor(Cursor cursor) {
383 mGroupCursorHelper.changeCursor(cursor, true);
453 void changeCursor(Cursor cursor, boolean releaseCursors) {
SuggestionsAdapter.java 176 * The results will be processed in the UI thread and changeCursor() will be called.
204 // changeCursor doesn't get called if cursor is null
211 changeCursor(null);
255 public void changeCursor(Cursor c) {
256 if (DBG) Log.d(LOG_TAG, "changeCursor(" + c + ")");
265 super.changeCursor(c);
  /frameworks/support/v4/java/android/support/v4/widget/
CursorFilter.java 36 void changeCursor(Cursor cursor);
68 mClient.changeCursor((Cursor) results.values);
  /frameworks/base/core/tests/coretests/src/android/widget/
SimpleCursorAdapterTest.java 108 * 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);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
CursorAdapterTest.java 68 adapter.changeCursor( null );
77 adapter.changeCursor( null );
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
CursorObjectAdapter.java 57 public void changeCursor(Cursor cursor) {
70 * Swap in a new Cursor, returning the old Cursor. Unlike changeCursor(Cursor),
  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactListAdapter.java 118 changeCursor(PARTITION_SUGGESTIONS, cursor);
122 public void changeCursor(Cursor cursor) {
123 changeCursor(PARTITION_ALL_CONTACTS, cursor);
  /external/libvncserver/webclients/novnc/include/
display.js 10 /*global Util, Base64, changeCursor */
126 changeCursor(conf.target, curDat, curDat, 2, 2, 8, 8);
580 that.changeCursor = function(pixels, mask, hotx, hoty, w, h) {
582 Util.Warn("changeCursor called but no cursor data URI support");
587 changeCursor(conf.target, pixels, mask, hotx, hoty, w, h);
589 changeCursor(conf.target, pixels, mask, hotx, hoty, w, h, conf.colourMap);
603 function changeCursor(target, pixels, mask, hotx, hoty, w, h, cmap) {
606 //Util.Debug(">> changeCursor, x: " + hotx + ", y: " + hoty + ", w: " + w + ", h: " + h);
699 //Util.Debug("<< changeCursor, cur.length: " + cur.length);
  /frameworks/base/docs/html/training/load-data-background/
handle-results.jd 105 mAdapter.changeCursor(cursor);
135 mAdapter.changeCursor(null);
  /packages/apps/Browser/src/com/android/browser/util/
ThreadedCursorAdapter.java 199 public void changeCursor(Cursor cursor) {
204 mCursorAdapter.changeCursor(cursor);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectVisibleCalendarsFragment.java 89 mAdapter.changeCursor(cursor);
100 mAdapter.changeCursor(null);
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 432 changeCursor(0, defaultPartitionCursor);
449 changeCursor(i, null);
453 changeCursor(i, null);
486 changeCursor(partitionIndex, createLoadingCursor());
511 changeCursor(partitionIndex, removeDuplicatesAndTruncate(partitionIndex, cursor));
  /cts/tests/tests/widget/src/android/widget/cts/
CursorAdapterTest.java 157 cursorAdapter.changeCursor(mCursor);
166 cursorAdapter.changeCursor(mCursor);
169 cursorAdapter.changeCursor(null);
CursorTreeAdapterTest.java 158 adapter.changeCursor(null);
192 adapter.changeCursor(mGroupCursor);
195 adapter.changeCursor(null);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
ExpandableList2.java 135 mAdapter.changeCursor(null);
  /packages/apps/Music/src/com/android/music/
QueryBrowserActivity.java 208 mAdapter.changeCursor(null);
262 mAdapter.changeCursor(c);
457 public void changeCursor(Cursor cursor) {
464 super.changeCursor(cursor);
MusicPicker.java 293 public void changeCursor(Cursor cursor) {
294 super.changeCursor(cursor);
341 * handed to changeCursor.
386 mAdapter.changeCursor(cursor);
530 mAdapter.changeCursor(null);
  /packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
GroupsListFragment.java 99 mAdapter.changeCursor(new MergeCursor(new Cursor[] { psuedoGroups, groups }));
  /packages/apps/Browser/src/com/android/browser/
BrowserSnapshotPage.java 107 mAdapter.changeCursor(null);
139 mAdapter.changeCursor(data);
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
SuggestionsAdapter.java 141 * 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) {
215 if (DBG) Log.d(LOG_TAG, "changeCursor(" + c + ")");
224 super.changeCursor(c);

Completed in 1115 milliseconds

1 2 3 4