Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/provider/
DCalendarContract.java1543 Cursor subCursor; in getEntityAndIncrementCursor() local
1545 subCursor = mResolver.query(Reminders.CONTENT_URI, REMINDERS_PROJECTION, in getEntityAndIncrementCursor()
1550 subCursor = mProvider.query(Reminders.CONTENT_URI, REMINDERS_PROJECTION, in getEntityAndIncrementCursor()
1556 while (subCursor.moveToNext()) { in getEntityAndIncrementCursor()
1558 reminderValues.put(Reminders.MINUTES, subCursor.getInt(COLUMN_MINUTES)); in getEntityAndIncrementCursor()
1559 reminderValues.put(Reminders.METHOD, subCursor.getInt(COLUMN_METHOD)); in getEntityAndIncrementCursor()
1563 subCursor.close(); in getEntityAndIncrementCursor()
1567 subCursor = mResolver.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION, in getEntityAndIncrementCursor()
1572 subCursor = mProvider.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION, in getEntityAndIncrementCursor()
1578 while (subCursor.moveToNext()) { in getEntityAndIncrementCursor()
[all …]