Home | History | Annotate | Download | only in calendar

Lines Matching refs:startDay

48      * 1) events with an earlier start (begin for normal events, startday for allday)
59 "startDay ASC, endDay DESC, title ASC";
128 public int startDay; // start Julian day
165 e.startDay = startDay;
186 dest.startDay = startDay;
207 e.startDay = 0;
221 * Loads <i>days</i> days worth of instances starting at <i>startDay</i>.
223 public static void loadEvents(Context context, ArrayList<Event> events, int startDay, int days,
235 int endDay = startDay + days - 1;
261 cEvents = instancesQuery(context.getContentResolver(), EVENT_PROJECTION, startDay,
263 cAllday = instancesQuery(context.getContentResolver(), EVENT_PROJECTION, startDay,
272 buildEventsFromCursor(events, cEvents, context, startDay, endDay);
273 buildEventsFromCursor(events, cAllday, context, startDay, endDay);
308 int startDay, int endDay, String selection, String[] selectionArgs, String orderBy) {
314 ContentUris.appendId(builder, startDay);
338 * @param startDay
342 ArrayList<Event> events, Cursor cEvents, Context context, int startDay, int endDay) {
362 if (e.startDay > endDay || e.endDay < startDay) {
399 e.startDay = cEvents.getInt(PROJECTION_START_DAY_INDEX);
504 if (active.endDay < event.startDay) {
546 Log.e("Cal", "+ startDay = " + startDay);
560 if (startDay > julianDay) {
572 && (startTime != endTime || startDay != endDay)) {
577 if (startDay == julianDay && startTime > endMinute) {