OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:instancesCursor
(Results
1 - 2
of
2
) sorted by null
/packages/apps/Calendar/src/com/android/calendar/alerts/
AlarmScheduler.java
112
Cursor
instancesCursor
= null;
114
instancesCursor
= queryUpcomingEvents(context, context.getContentResolver(),
116
if (
instancesCursor
!= null) {
117
queryNextReminderAndSchedule(
instancesCursor
, context,
121
if (
instancesCursor
!= null) {
122
instancesCursor
.close();
173
* Queries for all the reminders of the events in the
instancesCursor
, and schedules
176
private static void queryNextReminderAndSchedule(Cursor
instancesCursor
, Context context,
180
int eventCount =
instancesCursor
.getCount();
194
instancesCursor
.moveToPosition(-1)
[
all
...]
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlarmSchedulerTest.java
83
MatrixCursor
instancesCursor
= new MatrixCursor(AlarmScheduler.INSTANCES_PROJECTION);
93
instancesCursor
.addRow(ca);
97
return
instancesCursor
;
Completed in 586 milliseconds