Searched defs:EventInfo (Results 1 - 5 of 5) 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/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DCalendarSyncTestingBase.java95 protected Uri insertEvent(EventInfo event) throws Exception {
106 protected Uri insertEvent(int calendarId, EventInfo event) throws Exception{
140 protected void editEvent(long eventId, EventInfo event) throws Exception {
219 protected class EventInfo { class in class:CalendarSyncTestingBase
233 public EventInfo(String title, String startDate, String endDate, method in class:CalendarSyncTestingBase.EventInfo
238 public EventInfo(String title, long startDate, long endDate, method in class:CalendarSyncTestingBase.EventInfo
249 public EventInfo(String title, long startDate, long endDate, method in class:CalendarSyncTestingBase.EventInfo
262 public EventInfo(String title, String startDate, String endDate, method in class:CalendarSyncTestingBase.EventInfo
287 public EventInfo(String title, String description, String startDate, String endDate, method in class:CalendarSyncTestingBase.EventInfo
293 public EventInfo(Strin method in class:CalendarSyncTestingBase.EventInfo
330 public EventInfo(String originalTitle, String originalInstance, String title, method in class:CalendarSyncTestingBase.EventInfo
[all...]
H A DCalendarProvider2Test.java181 EventInfo eventInfo;
491 private class EventInfo { class in class:CalendarProvider2Test
508 public EventInfo(String title, String startDate, String endDate, method in class:CalendarProvider2Test.EventInfo
514 public EventInfo(String title, String startDate, String endDate, method in class:CalendarProvider2Test.EventInfo
542 public EventInfo(String title, String description, String startDate, String endDate, method in class:CalendarProvider2Test.EventInfo
548 public EventInfo(String title, String description, String startDate, String endDate, method in class:CalendarProvider2Test.EventInfo
585 public EventInfo(String originalTitle, String originalInstance, String title, method in class:CalendarProvider2Test.EventInfo
609 EventInfo mEvent;
630 private EventInfo[] mEvents = {
631 new EventInfo("normal
[all...]
/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...]

Completed in 153 milliseconds