Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/provider/
DCalendarContract.java1544 Cursor subCursor; in getEntityAndIncrementCursor() local
1546 subCursor = mResolver.query(Reminders.CONTENT_URI, REMINDERS_PROJECTION, in getEntityAndIncrementCursor()
1551 subCursor = mProvider.query(Reminders.CONTENT_URI, REMINDERS_PROJECTION, in getEntityAndIncrementCursor()
1557 while (subCursor.moveToNext()) { in getEntityAndIncrementCursor()
1559 reminderValues.put(Reminders.MINUTES, subCursor.getInt(COLUMN_MINUTES)); in getEntityAndIncrementCursor()
1560 reminderValues.put(Reminders.METHOD, subCursor.getInt(COLUMN_METHOD)); in getEntityAndIncrementCursor()
1564 subCursor.close(); in getEntityAndIncrementCursor()
1568 subCursor = mResolver.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION, in getEntityAndIncrementCursor()
1573 subCursor = mProvider.query(Attendees.CONTENT_URI, ATTENDEES_PROJECTION, in getEntityAndIncrementCursor()
1579 while (subCursor.moveToNext()) { in getEntityAndIncrementCursor()
[all …]