/packages/services/Car/car-lib/src/com/android/car/internal/ |
D | SingleMessageHandler.java | 31 public abstract class SingleMessageHandler<EventType> implements Callback { 44 protected abstract void handleEvent(EventType event); in handleEvent() 49 List<EventType> events = (List<EventType>) msg.obj; in handleMessage() 50 events.forEach(new Consumer<EventType>() { in handleMessage() 52 public void accept(EventType event) { in handleMessage() 61 public void sendEvents(List<EventType> events) { in sendEvents()
|
/packages/apps/Calendar/src/com/android/calendar/ |
D | AllInOneActivity.java | 68 import com.android.calendar.CalendarController.EventType; 267 mController.sendEvent(this, EventType.GO_TO, time, time, -1, ViewType.CURRENT); in onNewIntent() 485 mController.sendEvent(this, EventType.UPDATE_TITLE, t, t, -1, ViewType.CURRENT, in onResume() 503 mController.sendEventRelatedEventWithExtra(this, EventType.VIEW_EVENT, mViewEventId, in onResume() 542 mController.sendEvent(this, EventType.USER_HOME, null, null, -1, ViewType.CURRENT); in onUserLeaveHint() 627 mController.sendEvent(this, EventType.GO_TO, t, null, -1, viewType); in initFragments() 634 mController.sendEvent(this, EventType.GO_TO, null, null, -1, mPreviousView); in onBackPressed() 705 mController.sendEvent(this, EventType.GO_TO, t, null, t, -1, viewType, extras, null, null); in onOptionsItemSelected() 849 if (event.eventType != EventType.UPDATE_TITLE || mActionBar == null) { in setTitleInActionBar() 933 return EventType.GO_TO | EventType.UPDATE_TITLE; in getSupportedEventTypes() [all …]
|
D | CalendarController.java | 95 public interface EventType { interface in CalendarController 176 if (eventType != EventType.VIEW_EVENT) { in isAllDay() 184 if (eventType != EventType.VIEW_EVENT) { in getResponse() 344 if (eventType == EventType.VIEW_EVENT_DETAILS) { in sendEventRelatedEventWithExtraWithTitleWithCalendarId() 468 if (event.eventType == EventType.UPDATE_TITLE) { in sendEvent() 486 & (EventType.VIEW_EVENT_DETAILS)) in sendEvent() 683 if ((eventInfo.eventType & EventType.GO_TO) != 0) { in eventInfoToString() 685 } else if ((eventInfo.eventType & EventType.VIEW_EVENT) != 0) { in eventInfoToString() 687 } else if ((eventInfo.eventType & EventType.VIEW_EVENT_DETAILS) != 0) { in eventInfoToString() 689 } else if ((eventInfo.eventType & EventType.EVENTS_CHANGED) != 0) { in eventInfoToString() [all …]
|
D | DayFragment.java | 20 import com.android.calendar.CalendarController.EventType; 242 return EventType.GO_TO | EventType.EVENTS_CHANGED; in getSupportedEventTypes() 246 if (msg.eventType == EventType.GO_TO) { in handleEvent() 252 } else if (msg.eventType == EventType.EVENTS_CHANGED) { in handleEvent()
|
D | EventInfoFragment.java | 96 import com.android.calendar.CalendarController.EventType; 848 return EventType.EVENTS_CHANGED; in getSupportedEventTypes()
|
D | DayView.java | 80 import com.android.calendar.CalendarController.EventType; 222 mController.sendEventRelatedEvent(this, EventType.VIEW_EVENT, mClickedEvent.id, 1121 mController.sendEvent(this, EventType.UPDATE_TITLE, start, end, null, -1, ViewType.CURRENT, in updateTitle() 1533 mController.sendEvent(this, EventType.GO_TO, mStart, mEnd, null, -1, in onAnimationEnd() 3100 mController.sendEvent(this, EventType.GO_TO, null, null, selectedTime, -1, in doSingleTapUp()
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
D | MonthByWeekFragment.java | 49 import com.android.calendar.CalendarController.EventType; 405 return EventType.GO_TO | EventType.EVENTS_CHANGED; in getSupportedEventTypes() 410 if (event.eventType == EventType.GO_TO) { in handleEvent() 433 } else if (event.eventType == EventType.EVENTS_CHANGED) { in handleEvent() 462 controller.sendEvent(this, EventType.UPDATE_TITLE, time, time, time, -1, in setMonthDisplayed()
|
D | MonthByWeekAdapter.java | 34 import com.android.calendar.CalendarController.EventType; 269 mController.sendEvent(mContext, EventType.GO_TO, day, day, -1, in onDayTapped() 273 mController.sendEvent(mContext, EventType.GO_TO, day, day, -1, in onDayTapped()
|
/packages/apps/SettingsIntelligence/proto/ |
D | settings_intelligence_log.proto | 12 enum EventType { enum 82 optional EventType event_type = 1;
|
/packages/apps/Contacts/src/com/android/contacts/activities/ |
D | ContactEditorSpringBoardActivity.java | 115 EditorEvent.EventType.SHOW_RAW_CONTACT_PICKER, /* numberRawContacts */ 0); in onCreate() 192 EditorEvent.EventType.SHOW_RAW_CONTACT_PICKER, /* numberRawContacts */ 0); in loadEditor()
|
/packages/apps/Contacts/src/com/android/contacts/logging/ |
D | EditorEvent.java | 28 public static final class EventType { class in EditorEvent
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | PickRawContactDialogFragment.java | 222 Logger.logEditorEvent(EditorEvent.EventType.SHOW_RAW_CONTACT_PICKER, in onCreateDialog()
|