Home
last modified time | relevance | path

Searched refs:subCursor (Results 1 – 1 of 1) sorted by relevance

/frameworks/base/core/java/android/provider/
DCalendarContract.java1432 Cursor subCursor; in getEntityAndIncrementCursor() local
1434 subCursor = mResolver.query(Reminders.CONTENT_URI, REMINDERS_PROJECTION, in getEntityAndIncrementCursor()
1439 subCursor = mProvider.query(Reminders.CONTENT_URI, REMINDERS_PROJECTION, in getEntityAndIncrementCursor()
1445 while (subCursor.moveToNext()) { in getEntityAndIncrementCursor()
1447 reminderValues.put(Reminders.MINUTES, subCursor.getInt(COLUMN_MINUTES)); in getEntityAndIncrementCursor()
1448 reminderValues.put(Reminders.METHOD, subCursor.getInt(COLUMN_METHOD)); in getEntityAndIncrementCursor()
1452 subCursor.close(); in getEntityAndIncrementCursor()
1456 subCursor = mResolver.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION, in getEntityAndIncrementCursor()
1461 subCursor = mProvider.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION, in getEntityAndIncrementCursor()
1467 while (subCursor.moveToNext()) { in getEntityAndIncrementCursor()
[all …]