Searched defs:EventInfo (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/widget/
H A DCalendarAppWidgetModel.java45 * {@link EventInfo} instance, since a row in the widget might be either a
71 * {@link EventInfo} is a class that represents an event in the widget. It
75 static class EventInfo { class in class:CalendarAppWidgetModel
90 public EventInfo() { method in class:CalendarAppWidgetModel.EventInfo
99 builder.append("EventInfo [visibTitle=");
148 EventInfo other = (EventInfo) obj;
244 final List<EventInfo> mEventInfos;
257 mEventInfos = new ArrayList<EventInfo>(50);
354 private EventInfo populateEventInf
[all...]
/packages/apps/Calendar/tests/src/com/android/calendar/alerts/
H A DAlarmSchedulerTest.java52 private ArrayList<EventInfo> mEvents = new ArrayList<EventInfo>();
59 private static class EventInfo { class in class:AlarmSchedulerTest.MockProvider
65 public EventInfo(long eventId, boolean allDay, long begin, int reminderMinutes) { method in class:AlarmSchedulerTest.MockProvider.EventInfo
79 mEvents.add(new EventInfo(eventId, allDay, begin, reminderMinutes));
86 for (EventInfo event : mEvents) {
103 for (EventInfo event : mEvents) {
/packages/apps/Calendar/src/com/android/calendar/
H A DCalendarController.java146 public static class EventInfo { class in class:CalendarController
268 void handleEvent(EventInfo event);
322 // The current use of this method for VIEW_EVENT is by the day view to show an EventInfo
325 EventInfo.buildViewExtraLong(Attendees.ATTENDEE_STATUS_NONE, false),
368 EventInfo info = new EventInfo();
419 EventInfo info = new EventInfo();
432 public void sendEvent(Object sender, final EventInfo event) {
836 private String eventInfoToString(EventInfo eventInf
[all...]
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarProvider2Test.java189 EventInfo eventInfo;
499 private class EventInfo { class in class:CalendarProvider2Test
516 public EventInfo(String title, String startDate, String endDate, method in class:CalendarProvider2Test.EventInfo
522 public EventInfo(String title, String startDate, String endDate, method in class:CalendarProvider2Test.EventInfo
550 public EventInfo(String title, String description, String startDate, String endDate, method in class:CalendarProvider2Test.EventInfo
556 public EventInfo(String title, String description, String startDate, String endDate, method in class:CalendarProvider2Test.EventInfo
593 public EventInfo(String originalTitle, String originalInstance, String title, method in class:CalendarProvider2Test.EventInfo
617 EventInfo mEvent;
638 private EventInfo[] mEvents = {
639 new EventInfo("normal
[all...]

Completed in 172 milliseconds