Searched refs:cursors (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DRecentLoader.java59 // previously returned cursors for filtering/sorting; this currently races
199 List<Cursor> cursors = Lists.newArrayList();
213 cursors.add(filtered);
225 Log.d(TAG, "Found " + cursors.size() + " of " + mTasks.size() + " recent queries done");
238 if (cursors.size() > 0) {
239 merged = new MergeCursor(cursors.toArray(new Cursor[cursors.size()]));
/frameworks/base/core/java/android/database/
H A DMergeCursor.java21 * The schema of the cursors presented is entirely up to the creator of the MergeCursor, and
42 public MergeCursor(Cursor[] cursors) argument
44 mCursors = cursors;
45 mCursor = cursors[0];
/frameworks/base/core/java/com/android/internal/database/
H A DSortCursor.java25 * A variant of MergeCursor that sorts the cursors being merged. If decent
55 public SortCursor(Cursor[] cursors, String sortcolumn) argument
57 mCursors = cursors;
112 * is used to avoid having to search all cursors from the start.
243 // All of the cursors may be empty, but they can still return
/frameworks/ex/common/java/com/android/common/contacts/
H A DBaseEmailAddressAdapter.java195 Cursor[] cursors = (Cursor[]) results.values;
196 onDirectoryLoadFinished(constraint, cursors[0], cursors[1]);

Completed in 546 milliseconds