Home | History | Annotate | Download | only in calendar

Lines Matching refs:allDay

48      * 1) events with an earlier start (begin for normal events, startday for allday)
49 * 2) events with a later end (end for normal events, endday for allday)
54 * therefore show up in the allday area).
118 public boolean allDay;
158 e.allDay = allDay;
179 dest.allDay = allDay;
200 e.allDay = false;
351 // Sort events in two passes so we ensure the allday and standard events
373 e.allDay = cEvents.getInt(PROJECTION_ALL_DAY_INDEX) != 0;
493 // Remove the inactive allday events. An event on the active list
539 Log.e("Cal", "+ allDay = " + allDay);
633 // Use >= so we'll pick up Exchange allday events
634 return allDay || endMillis - startMillis >= DateUtils.DAY_IN_MILLIS;