Home | History | Annotate | Download | only in calendar

Lines Matching defs: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).
124 public boolean allDay;
164 e.allDay = allDay;
185 dest.allDay = allDay;
206 e.allDay = false;
357 // Sort events in two passes so we ensure the allday and standard events
379 e.allDay = cEvents.getInt(PROJECTION_ALL_DAY_INDEX) != 0;
499 // Remove the inactive allday events. An event on the active list
545 Log.e("Cal", "+ allDay = " + allDay);
639 // Use >= so we'll pick up Exchange allday events
640 return allDay || endMillis - startMillis >= DateUtils.DAY_IN_MILLIS;