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

1 2

  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventActivity.java 35 import com.android.calendar.CalendarController.EventInfo;
63 private EventInfo mEventInfo;
119 private EventInfo getEventInfoFromIntent(Bundle icicle) {
120 EventInfo info = new EventInfo();
EditEventFragment.java 58 import com.android.calendar.CalendarController.EventInfo;
117 private final EventInfo mEvent;
437 public EditEventFragment(EventInfo event, ArrayList<ReminderEntry> reminders,
    [all...]
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeEventRuleSettings.java 28 import android.service.notification.ZenModeConfig.EventInfo;
51 private EventInfo mEvent;
137 Integer.toString(EventInfo.REPLY_ANY_EXCEPT_NO),
138 Integer.toString(EventInfo.REPLY_YES_OR_MAYBE),
139 Integer.toString(EventInfo.REPLY_YES),
167 public static CalendarInfo findCalendar(Context context, EventInfo event) {
227 private static String key(EventInfo event) {
232 return EventInfo.resolveUserId(userId) + ":" + (calendar == null ? "" : calendar);
ZenRuleSelectionDialog.java 146 final ZenModeConfig.EventInfo event = new ZenModeConfig.EventInfo();
148 event.reply = ZenModeConfig.EventInfo.REPLY_ANY_EXCEPT_NO;
  /packages/apps/Calendar/tests/src/com/android/calendar/widget/
CalendarAppWidgetServiceTest.java 20 import com.android.calendar.widget.CalendarAppWidgetModel.EventInfo;
109 EventInfo eventInfo = new EventInfo();
110 eventInfo.visibWhen = View.VISIBLE;
111 eventInfo.visibWhere = View.VISIBLE;
112 eventInfo.visibTitle = View.VISIBLE;
113 eventInfo.when = Utils.formatDateRange(getContext(), now + ONE_HOUR, now + TWO_HOURS,
115 eventInfo.where = location;
116 eventInfo.title = title
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlarmSchedulerTest.java 52 private ArrayList<EventInfo> mEvents = new ArrayList<EventInfo>();
59 private static class EventInfo {
65 public EventInfo(long eventId, boolean allDay, long begin, int reminderMinutes) {
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/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 45 import com.android.calendar.widget.CalendarAppWidgetModel.EventInfo;
241 final EventInfo eventInfo = mModel.mEventInfos.get(rowInfo.mIndex);
242 if (eventInfo.allDay) {
248 int displayColor = Utils.getDisplayColorFromColor(eventInfo.color);
251 if (!eventInfo.allDay && eventInfo.start <= now && now <= eventInfo.end) {
259 if (!eventInfo.allDay) {
260 updateTextView(views, R.id.when, eventInfo.visibWhen, eventInfo.when)
    [all...]
  /frameworks/base/services/core/java/com/android/server/notification/
CalendarTracker.java 30 import android.service.notification.ZenModeConfig.EventInfo;
114 public CheckEventResult checkEvent(EventInfo filter, long time) {
172 private boolean meetsAttendee(EventInfo filter, int eventId, String email) {
250 case EventInfo.REPLY_YES:
252 case EventInfo.REPLY_YES_OR_MAYBE:
255 case EventInfo.REPLY_ANY_EXCEPT_NO:
EventConditionProvider.java 37 import android.service.notification.ZenModeConfig.EventInfo;
218 final EventInfo event = ZenModeConfig.tryParseEventConditionId(conditionId);
238 final int userId = EventInfo.resolveUserId(event.userId);
ZenModeHelper.java 57 import android.service.notification.ZenModeConfig.EventInfo;
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 189 EventInfo eventInfo;
192 eventInfo = findEvent(eventName);
196 Log.i(TAG, "insert " + eventInfo.mTitle);
197 insertEvent(mCalendarId, eventInfo);
499 private class EventInfo {
516 public EventInfo(String title, String startDate, String endDate,
522 public EventInfo(String title, String startDate, String endDate,
550 public EventInfo(String title, String description, String startDate, String endDate,
556 public EventInfo(String title, String description, String startDate, String endDate
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 526 EventInfo &info = Events[getTag<EVENT>()];
532 EventInfo &info = Events[getTag<EVENT>()];
541 const EventInfo &info = I->second;
628 struct EventInfo {
631 EventInfo() : HasDispatcher(false) { }
634 typedef llvm::DenseMap<EventTag, EventInfo> EventsTy;
  /packages/apps/Calendar/src/com/android/calendar/
SearchActivity.java 44 import com.android.calendar.CalendarController.EventInfo;
187 private void showEventInfo(EventInfo event) {
220 EventInfo searchEventInfo = new EventInfo();
356 public void handleEvent(EventInfo event) {
CalendarController.java 146 public static class EventInfo {
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) {
    [all...]
DayFragment.java 19 import com.android.calendar.CalendarController.EventInfo;
265 public void handleEvent(EventInfo msg) {
AllInOneActivity.java 68 import com.android.calendar.CalendarController.EventInfo;
338 // Open EventInfo later
547 EventInfo.buildViewExtraLong(mIntentAttendeeResponse,mIntentAllDay),
642 EventInfo info = null;
664 info = new EventInfo();
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaFragment.java 38 import com.android.calendar.CalendarController.EventInfo;
69 private EventInfo mOnAttachedInfo = null;
317 private void goTo(EventInfo event, boolean animate) {
365 public void handleEvent(EventInfo event) {
386 private void showEventInfo(EventInfo event, boolean allDay, boolean replaceFragment) {
AgendaListView.java 174 // Switch to the EventInfo view
202 startTime, endTime, 0, 0, CalendarController.EventInfo.buildViewExtraLong(
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectVisibleCalendarsFragment.java 35 import com.android.calendar.CalendarController.EventInfo;
185 public void handleEvent(EventInfo event) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
ProcessOptions.c 740 WARNING_IF_CONTEXT *EventInfo;
743 EventInfo = (WARNING_IF_CONTEXT *) Context;
745 if (*(EventInfo->TimeOut) == 0) {
748 gBS->SignalEvent (EventInfo->SyncEvent);
752 UnicodeSPrint(TimeOutString, MAX_TIME_OUT_LEN, L"%d", *(EventInfo->TimeOut));
754 CreateDialog (NULL, gEmptyString, EventInfo->ErrorInfo, gPressEnter, gEmptyString, TimeOutString, NULL);
756 *(EventInfo->TimeOut) -= 1;
    [all...]
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekFragment.java 48 import com.android.calendar.CalendarController.EventInfo;
426 public void handleEvent(EventInfo event) {
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/24.4.0-beta3/
chartlib-24.4.0-beta3.jar 
  /prebuilts/gradle-plugin/com/android/tools/chartlib/chartlib/24.4.0-beta6/
chartlib-24.4.0-beta6.jar 

Completed in 575 milliseconds

1 2