Searched refs:EventInfo (Results 1 - 18 of 18) sorted by relevance

/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
H A DSyncCalendarTest.java28 private EventInfo normalEvent =
29 new EventInfo("normal0", "2008-12-01T00:00:00", "2008-12-02T00:00:00", false);
30 private EventInfo dailyRecurringEvent = new EventInfo("dailyEvent",
64 EventInfo allDayEvent = new EventInfo("allday0", dtStart, dtEnd, true);
85 EventInfo event = new EventInfo(newTitle, dtStart, dtEnd, false);
115 EventInfo event = new EventInfo(titl
[all...]
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/tests/src/com/android/calendar/widget/
H A DCalendarAppWidgetServiceTest.java20 import com.android.calendar.widget.CalendarAppWidgetModel.EventInfo;
99 EventInfo eventInfo = new EventInfo();
127 EventInfo eventInfo = new EventInfo();
137 eventInfo = new EventInfo();
171 EventInfo eventInfo = new EventInfo();
181 eventInfo = new EventInfo();
212 EventInfo eventInf
[all...]
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventActivity.java34 import com.android.calendar.CalendarController.EventInfo;
49 private EventInfo mEventInfo;
94 private EventInfo getEventInfoFromIntent(Bundle icicle) {
95 EventInfo info = new EventInfo();
H A DEditEventFragment.java56 import com.android.calendar.CalendarController.EventInfo;
105 private final EventInfo mEvent;
342 public EditEventFragment(EventInfo event, boolean readOnly, Intent intent) {
830 public void handleEvent(EventInfo event) {
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaListView.java26 import com.android.calendar.agenda.AgendaWindowAdapter.EventInfo;
174 // Switch to the EventInfo view
175 EventInfo event = mWindowAdapter.getEventByPosition(position);
202 startTime, endTime, 0, 0, CalendarController.EventInfo.buildViewExtraLong(
233 EventInfo event = mWindowAdapter.getEventByPosition(position);
255 EventInfo event = mWindowAdapter.getEventByPosition(position);
267 public long getFirstVisibleTime(EventInfo e) {
268 EventInfo event = e;
292 public EventInfo getFirstVisibleEvent() {
346 EventInfo even
[all...]
H A DAgendaFragment.java38 import com.android.calendar.CalendarController.EventInfo;
67 private EventInfo mOnAttachedInfo = null;
259 AgendaWindowAdapter.EventInfo e = mAgendaListView.getFirstVisibleEvent();
316 private void goTo(EventInfo event, boolean animate) {
363 public void handleEvent(EventInfo event) {
384 private void showEventInfo(EventInfo event, boolean allDay, boolean replaceFragment) {
H A DAgendaWindowAdapter.java292 static class EventInfo { class in class:AgendaWindowAdapter
568 public EventInfo getEventByPosition(final int positionInListView) {
580 public EventInfo getEventByPosition(final int positionInListView,
605 EventInfo ei = buildEventInfoFromCursor(info.cursor, cursorPosition, isDayHeader);
615 private EventInfo buildEventInfoFromCursor(final Cursor cursor, int cursorPosition,
622 EventInfo event = new EventInfo();
688 EventInfo event =
694 0, CalendarController.EventInfo.buildViewExtraLong(
1038 EventInfo even
[all...]
/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...]
H A DCalendarAppWidgetService.java45 import com.android.calendar.widget.CalendarAppWidgetModel.EventInfo;
240 final EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
349 EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
425 for (EventInfo event : model.mEventInfos) {
/packages/apps/Calendar/src/com/android/calendar/
H A DSearchActivity.java44 import com.android.calendar.CalendarController.EventInfo;
184 private void showEventInfo(EventInfo event) {
217 EventInfo searchEventInfo = new EventInfo();
354 public void handleEvent(EventInfo event) {
H A DCalendarController.java151 public static class EventInfo { class in class:CalendarController
266 void handleEvent(EventInfo event);
315 // The current use of this method for VIEW_EVENT is by the day view to show an EventInfo
318 EventInfo.buildViewExtraLong(Attendees.ATTENDEE_STATUS_NONE, false),
338 EventInfo info = new EventInfo();
387 EventInfo info = new EventInfo();
400 public void sendEvent(Object sender, final EventInfo event) {
793 private String eventInfoToString(EventInfo eventInf
[all...]
H A DDayFragment.java19 import com.android.calendar.CalendarController.EventInfo;
265 public void handleEvent(EventInfo msg) {
H A DAllInOneActivity.java74 import com.android.calendar.CalendarController.EventInfo;
340 // Open EventInfo later
571 EventInfo.buildViewExtraLong(mIntentAttendeeResponse,mIntentAllDay),
666 EventInfo info = null;
688 info = new EventInfo();
1020 private void setTitleInActionBar(EventInfo event) {
1110 public void handleEvent(EventInfo event) {
H A DEventInfoFragment.java96 import com.android.calendar.CalendarController.EventInfo;
2056 public void handleEvent(EventInfo event) {
/packages/apps/Calendar/src/com/android/calendar/selectcalendars/
H A DSelectVisibleCalendarsFragment.java20 import com.android.calendar.CalendarController.EventInfo;
179 public void handleEvent(EventInfo event) {
/packages/apps/Calendar/src/com/android/calendar/month/
H A DMonthByWeekFragment.java44 import com.android.calendar.CalendarController.EventInfo;
402 public void handleEvent(EventInfo event) {

Completed in 1015 milliseconds