HomeSort by relevance Sort by last modified time
    Searched refs:EventInfo (Results 1 - 23 of 23) sorted by null

  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
SyncCalendarTest.java 28 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(title, newDtStart, newDtEnd, false)
    [all...]
CalendarSyncTestingBase.java 95 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 {
233 public EventInfo(String title, String startDate, String endDate,
238 public EventInfo(String title, long startDate, long endDate,
249 public EventInfo(String title, long startDate, long endDate,
262 public EventInfo(String title, String startDate, String endDate,
287 public EventInfo(String title, String description, String startDate, String endDate,
293 public EventInfo(String title, String description, String startDate, String endDate
    [all...]
CalendarProvider2Test.java 181 EventInfo eventInfo;
184 eventInfo = findEvent(eventName);
188 Log.i(TAG, "insert " + eventInfo.mTitle);
189 insertEvent(mCalendarId, eventInfo);
491 private class EventInfo {
505 public EventInfo(String title, String startDate, String endDate,
511 public EventInfo(String title, String startDate, String endDate,
536 public EventInfo(String title, String description, String startDate, String endDate,
542 public EventInfo(String title, String description, String startDate, String endDate
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/widget/
CalendarAppWidgetServiceTest.java 20 import com.android.calendar.widget.CalendarAppWidgetModel.EventInfo;
99 EventInfo eventInfo = new EventInfo();
100 eventInfo.visibWhen = View.VISIBLE;
101 eventInfo.visibWhere = View.VISIBLE;
102 eventInfo.visibTitle = View.VISIBLE;
103 eventInfo.when = "3am";
104 eventInfo.where = location;
105 eventInfo.title = title
    [all...]
  /external/qemu/android/
hw-events.c 20 } EventInfo;
30 static const EventInfo _ev_types_tab[] =
36 static const EventInfo _key_codes_list[] =
43 static const EventInfo _rel_codes_list[] =
48 static const EventInfo _abs_codes_list[] =
60 typedef const EventInfo* EventList;
64 const EventInfo* table;
  /external/libnfc-nxp/src/
phHciNfc_WI.c 657 phHal_sEventInfo_t EventInfo;
686 EventInfo.eventHost = phHal_eHostController;
687 EventInfo.eventSource = phHal_ePICC_DevType;
693 EventInfo.eventType = NFC_EVT_START_OF_TRANSACTION;
698 EventInfo.eventType = NFC_EVT_END_OF_TRANSACTION;
703 EventInfo.eventType = NFC_EVT_TRANSACTION;
704 EventInfo.eventInfo.aid.buffer = (uint8_t *)p_wi_info->aid;
708 EventInfo.eventInfo.aid.length = length - HCP_HEADER_LEN
    [all...]
phHciNfc_SWP.c 586 static phHal_sEventInfo_t EventInfo;
621 EventInfo.eventHost = phHal_eHostController;
622 EventInfo.eventSource = phHal_ePICC_DevType;
626 EventInfo.eventType = NFC_EVT_PROTECTED;
636 NFC_NOTIFY_EVENT, (void*)&EventInfo);
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventActivity.java 34 import com.android.calendar.CalendarController.EventInfo;
49 private EventInfo mEventInfo;
94 private EventInfo getEventInfoFromIntent(Bundle icicle) {
95 EventInfo info = new EventInfo();
EditEventFragment.java 56 import com.android.calendar.CalendarController.EventInfo;
105 private EventInfo mEvent;
342 public EditEventFragment(EventInfo event, boolean readOnly, Intent intent) {
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java 45 * {@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 {
90 public 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 populateEventInfo(long eventId, boolean allDay, long start, long end
    [all...]
CalendarAppWidgetService.java 22 import com.android.calendar.widget.CalendarAppWidgetModel.EventInfo;
230 final EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
231 if (eventInfo.allDay) {
237 int displayColor = Utils.getDisplayColorFromColor(eventInfo.color);
240 if (!eventInfo.allDay && eventInfo.start <= now && now <= eventInfo.end) {
248 if (!eventInfo.allDay) {
249 updateTextView(views, R.id.when, eventInfo.visibWhen, eventInfo.when)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
SearchActivity.java 42 import com.android.calendar.CalendarController.EventInfo;
169 private void showEventInfo(EventInfo event) {
202 EventInfo searchEventInfo = new EventInfo();
318 public void handleEvent(EventInfo event) {
CalendarController.java 153 public static class EventInfo {
203 void handleEvent(EventInfo event);
276 EventInfo info = new EventInfo();
325 EventInfo info = new EventInfo();
338 public void sendEvent(Object sender, final EventInfo event) {
783 private String eventInfoToString(EventInfo eventInfo) {
787 if ((eventInfo.eventType & EventType.GO_TO) != 0)
    [all...]
DayFragment.java 19 import com.android.calendar.CalendarController.EventInfo;
261 public void handleEvent(EventInfo msg) {
AllInOneActivity.java 25 import com.android.calendar.CalendarController.EventInfo;
302 // Open EventInfo later
598 EventInfo info = null;
620 info = new EventInfo();
    [all...]
EventInfoFragment.java 23 import com.android.calendar.CalendarController.EventInfo;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaListView.java 26 import com.android.calendar.agenda.AgendaWindowAdapter.EventInfo;
194 // Switch to the EventInfo view
195 EventInfo event = mWindowAdapter.getEventByPosition(position);
237 EventInfo event = mWindowAdapter.getEventByPosition(position);
259 EventInfo event = mWindowAdapter.getEventByPosition(position);
291 EventInfo event = mWindowAdapter.getEventByPosition(position,
342 EventInfo event = mWindowAdapter.getEventByPosition(i + start);
AgendaFragment.java 37 import com.android.calendar.CalendarController.EventInfo;
69 private EventInfo mOnAttachedInfo = null;
267 private void goTo(EventInfo event, boolean animate) {
315 public void handleEvent(EventInfo event) {
332 private void showEventInfo(EventInfo event, boolean allDay) {
AgendaWindowAdapter.java 277 static class EventInfo {
542 public EventInfo getEventByPosition(final int positionInListView) {
554 public EventInfo getEventByPosition(final int positionInListView,
579 EventInfo ei = buildEventInfoFromCursor(info.cursor, cursorPosition, isDayHeader);
589 private EventInfo buildEventInfoFromCursor(final Cursor cursor, int cursorPosition,
596 EventInfo event = new EventInfo();
667 EventInfo event =
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 414 EventInfo &info = Events[getTag<EVENT>()];
420 EventInfo &info = Events[getTag<EVENT>()];
429 const EventInfo &info = I->second;
529 struct EventInfo {
532 EventInfo() : HasDispatcher(false) { }
535 typedef llvm::DenseMap<EventTag, EventInfo> EventsTy;
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectVisibleCalendarsFragment.java 20 import com.android.calendar.CalendarController.EventInfo;
179 public void handleEvent(EventInfo event) {
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekFragment.java 20 import com.android.calendar.CalendarController.EventInfo;
392 public void handleEvent(EventInfo event) {
  /external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp 45 for (llvm::DenseMap<EventTag, EventInfo>::iterator

Completed in 2099 milliseconds