HomeSort by relevance Sort by last modified time
    Searched defs:cursors (Results 1 - 25 of 65) sorted by null

1 2 3

  /packages/apps/UnifiedEmail/src/com/android/mail/providers/
SuggestionsProvider.java 93 ArrayList<Cursor> cursors = new ArrayList<Cursor>(); local
98 cursors.add(c);
102 cursors.add(new ContactsCursor().query(query));
105 if (cursors.size() > 0) {
106 mergeCursor = new MergeCursor(cursors.toArray(new Cursor[cursors.size()]));
  /packages/apps/Contacts/src/com/android/contacts/list/
FavoritesAndContactsLoader.java 57 List<Cursor> cursors = Lists.newArrayList(); local
59 cursors.add(loadFavoritesContacts());
62 cursors.add(contactsCursor);
63 return new MergeCursor(cursors.toArray(new Cursor[cursors.size()])) {
74 // correctly handles null cursors.
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.h 73 /* Lists of weak references to statements and cursors used within this connection */
75 PyObject* cursors; member in struct:__anon5775
77 /* Counters for how many statements/cursors were created in the connection. May be
  /external/libdrm/tests/modetest/
cursor.c 61 static struct cursor cursors[MAX_CURSORS]; variable in typeref:struct:cursor
152 struct cursor *cursor = &cursors[i];
173 struct cursor *cursor = &cursors[ncursors];
  /external/python/cpython2/Modules/_sqlite/
connection.h 73 /* Lists of weak references to statements and cursors used within this connection */
75 PyObject* cursors; member in struct:__anon30252
77 /* Counters for how many statements/cursors were created in the connection. May be
  /packages/apps/Messaging/src/com/android/messaging/ui/contact/
ContactRecipientAdapter.java 196 final Cursor[] cursors = new Cursor[]{cursorResult.personalCursor, local
198 for (Cursor cursor : cursors) {
  /packages/apps/Messaging/src/com/android/messaging/datamodel/action/
SyncMessagesAction.java 160 // Cursors
161 final SyncCursorPair cursors = new SyncCursorPair(-1L, lowerBoundTimeMillis); local
162 final boolean inSync = cursors.isSynchronized(db);
239 // Cursors
240 final SyncCursorPair cursors = new SyncCursorPair(lowerBoundTimeMillis, local
244 lastTimestampMillis = syncCursorPair(db, cursors, smsToAdd, mmsToAdd,
269 * @param cursors cursor pair holding references to local and remote messages
278 private long syncCursorPair(final DatabaseWrapper db, final SyncCursorPair cursors,
293 cursors.query(db);
295 localTotal = cursors.getLocalCount()
    [all...]
  /cts/tests/tests/database/src/android/database/cts/
MergeCursorTest.java 83 // if the items are not null, getCount() will return the sum of all cursors' count.
105 Cursor[] cursors = new Cursor[2]; local
106 cursors[0] = mDatabase.query(TABLE5_NAME, null, null, null, null, null, null);
107 assertEquals(1, cursors[0].getCount());
109 cursors[1] = mCursors[1];
110 assertTrue(cursors[1].getCount() > 0);
111 MergeCursor mergeCursor = new MergeCursor(cursors);
112 // MergeCursor should points to cursors[0] after moveToFirst.
119 // MergeCursor should points to cursors[1] moveToNext.
145 // Get cursors
    [all...]
  /packages/apps/DocumentsUI/src/com/android/documentsui/
RecentsLoader.java 65 // previously returned cursors for filtering/sorting; this currently races
155 List<Cursor> cursors = new ArrayList<>(mTasks.size()); local
176 cursors.add(filtered);
195 "Found " + cursors.size() + " of " + totalQuerySize + " recent queries done");
201 if (cursors.size() > 0) {
202 merged = new MergeCursor(cursors.toArray(new Cursor[cursors.size()]));
  /frameworks/ex/common/java/com/android/common/contacts/
BaseEmailAddressAdapter.java 195 Cursor[] cursors = (Cursor[]) results.values; local
196 onDirectoryLoadFinished(constraint, cursors[0], cursors[1]);
  /toolchain/binutils/binutils-2.25/binutils/
resrc.c 141 static int cursors; variable
749 select one of the actual cursors. */
797 first_cursor = cursors;
819 ++cursors;
822 name.u.id = cursors;
    [all...]
  /external/clang/tools/c-index-test/
c-index-test.c 3591 CXCursor *cursors = 0; local
    [all...]
  /external/python/cpython2/Modules/
_bsddb.c 2245 DBC** cursors; local
    [all...]
  /packages/apps/Email/provider_src/com/android/email/provider/
EmailProvider.java 4155 Cursor[] cursors = new Cursor[]{vc, c}; local
    [all...]
  /external/guice/extensions/persist/lib/
commons-collections.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.1/
commons-collections-3.2.1.jar 
  /prebuilts/tools/common/m2/repository/commons-collections/commons-collections/3.2.2/
commons-collections-3.2.2.jar 
  /prebuilts/tools/common/m2/repository/com/android/external/eclipse/swt/3.5.0/
swt-3.5.0.jar 
  /prebuilts/tools/darwin-x86/swt/
swt.jar 
  /prebuilts/tools/darwin-x86_64/swt/
swt.jar 
  /prebuilts/tools/linux-x86/swt/
swt.jar 
  /prebuilts/tools/linux-x86_64/swt/
swt.jar 
  /prebuilts/tools/windows/swt/
swt.jar 
  /prebuilts/tools/windows-x86_64/swt/
swt.jar 
  /external/guice/extensions/struts2/lib/
core-3.1.1.jar 

Completed in 311 milliseconds

1 2 3