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

1 2 3 4

  /external/oj-libjdwp/src/share/back/
standardHandlers.c 40 handleClassPrepare(JNIEnv *env, EventInfo *evinfo,
79 handleGarbageCollectionFinish(JNIEnv *env, EventInfo *evinfo,
87 handleFrameEvent(JNIEnv *env, EventInfo *evinfo,
126 genericHandler(JNIEnv *env, EventInfo *evinfo,
eventFilterRestricted.h 42 EventInfo *evinfo,
eventHelper.h 36 void eventHelper_recordEvent(EventInfo *evinfo, jint id,
eventHandler.h 43 EventInfo *evinfo,
eventHelper.c 50 EventInfo info;
129 static void saveEventInfoRefs(JNIEnv *env, EventInfo *evinfo);
130 static void tossEventInfoRefs(JNIEnv *env, EventInfo *evinfo);
281 writeSingleStepEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo)
288 writeBreakpointEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo)
295 writeFieldAccessEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo)
312 EventInfo *evinfo)
330 writeExceptionEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo)
341 writeThreadEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo)
347 writeMonitorEvent(JNIEnv *env, PacketOutputStream *out, EventInfo *evinfo
    [all...]
eventHandler.c 544 event_callback(JNIEnv *env, EventInfo *evinfo)
751 EventInfo info;
773 EventInfo info;
796 EventInfo info;
824 EventInfo info;
849 EventInfo info;
867 EventInfo info;
886 EventInfo info;
915 EventInfo info;
937 EventInfo info
    [all...]
  /frameworks/support/slices/view/src/main/java/androidx/slice/widget/
GridRowView.java 180 EventInfo info = new EventInfo(getMode(), EventInfo.ACTION_TYPE_CONTENT,
181 EventInfo.ROW_TYPE_GRID, mRowIndex);
182 Pair<SliceItem, EventInfo> tagItem = new Pair<>(gc.getContentIntent(), info);
242 EventInfo info = new EventInfo(getMode(), EventInfo.ACTION_TYPE_SEE_MORE,
243 EventInfo.ROW_TYPE_GRID, mRowIndex);
244 info.setPosition(EventInfo.POSITION_CELL, index, total)
    [all...]
RowView.java 34 import static androidx.slice.widget.EventInfo.ACTION_TYPE_BUTTON;
35 import static androidx.slice.widget.EventInfo.ACTION_TYPE_TOGGLE;
36 import static androidx.slice.widget.EventInfo.ROW_TYPE_LIST;
37 import static androidx.slice.widget.EventInfo.ROW_TYPE_TOGGLE;
435 EventInfo info = new EventInfo(getMode(), actionType, rowType, mRowIndex);
437 info.setPosition(EventInfo.POSITION_START, 0, 1);
505 EventInfo info = new EventInfo(getMode(), EventInfo.ACTION_TYPE_SEE_MORE
    [all...]
ListContent.java 310 return EventInfo.ROW_TYPE_GRID;
320 ? EventInfo.ROW_TYPE_SLIDER
321 : EventInfo.ROW_TYPE_PROGRESS;
323 return EventInfo.ROW_TYPE_TOGGLE;
327 return EventInfo.ROW_TYPE_TOGGLE;
330 return EventInfo.ROW_TYPE_LIST;
333 ? EventInfo.ROW_TYPE_TOGGLE
334 : EventInfo.ROW_TYPE_LIST;
338 return EventInfo.ROW_TYPE_LIST;
EventInfo.java 28 public class EventInfo {
87 * Indicates the event was an interaction with a toggle. Check {@link EventInfo#state} to
92 * Indicates the event was an interaction with a button. Check {@link EventInfo#actionPosition}
97 * Indicates the event was an interaction with a slider. Check {@link EventInfo#state} to
205 public EventInfo(@SliceView.SliceMode int sliceMode, @SliceActionType int actionType,
ShortcutView.java 130 EventInfo ei = new EventInfo(SliceView.MODE_SHORTCUT,
131 EventInfo.ACTION_TYPE_BUTTON,
132 EventInfo.ROW_TYPE_SHORTCUT, 0 /* rowIndex */);
SliceActionView.java 58 private EventInfo mEventInfo;
76 public void setAction(@NonNull SliceActionImpl action, EventInfo info,
175 mEventInfo.state = isChecked ? EventInfo.STATE_ON : EventInfo.STATE_OFF;
  /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();
  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeEventRuleSettings.java 28 import android.service.notification.ZenModeConfig.EventInfo;
52 private EventInfo mEvent;
143 Integer.toString(EventInfo.REPLY_ANY_EXCEPT_NO),
144 Integer.toString(EventInfo.REPLY_YES_OR_MAYBE),
145 Integer.toString(EventInfo.REPLY_YES),
173 public static CalendarInfo findCalendar(Context context, EventInfo event) {
233 private static String key(EventInfo event) {
238 return EventInfo.resolveUserId(userId) + ":" + (calendar == null ? "" : calendar);
  /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...]
  /frameworks/base/services/core/java/com/android/server/notification/
CalendarTracker.java 30 import android.service.notification.ZenModeConfig.EventInfo;
115 public CheckEventResult checkEvent(EventInfo filter, long time) {
175 private boolean meetsAttendee(EventInfo filter, int eventId, String email) {
253 case EventInfo.REPLY_YES:
255 case EventInfo.REPLY_YES_OR_MAYBE:
258 case EventInfo.REPLY_ANY_EXCEPT_NO:
  /frameworks/support/slices/view/src/main/java/androidx/slice/
SliceMetadata.java 35 import static androidx.slice.widget.EventInfo.ROW_TYPE_PROGRESS;
36 import static androidx.slice.widget.EventInfo.ROW_TYPE_SLIDER;
50 import androidx.slice.widget.EventInfo;
97 private @EventInfo.SliceRowType int mTemplateType;
161 public @EventInfo.SliceRowType int getHeaderType() {
  /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;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/StaticAnalyzer/Core/
CheckerManager.h 522 EventInfo &info = Events[getTag<EVENT>()];
528 EventInfo &info = Events[getTag<EVENT>()];
537 const EventInfo &info = I->second;
620 struct EventInfo {
623 EventInfo() : HasDispatcher(false) { }
626 typedef llvm::DenseMap<EventTag, EventInfo> EventsTy;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/clang/StaticAnalyzer/Core/
CheckerManager.h 522 EventInfo &info = Events[getTag<EVENT>()];
528 EventInfo &info = Events[getTag<EVENT>()];
537 const EventInfo &info = I->second;
620 struct EventInfo {
623 EventInfo() : HasDispatcher(false) { }
626 typedef llvm::DenseMap<EventTag, EventInfo> EventsTy;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/clang/StaticAnalyzer/Core/
CheckerManager.h 522 EventInfo &info = Events[getTag<EVENT>()];
528 EventInfo &info = Events[getTag<EVENT>()];
537 const EventInfo &info = I->second;
620 struct EventInfo {
623 EventInfo() : HasDispatcher(false) { }
626 typedef llvm::DenseMap<EventTag, EventInfo> EventsTy;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/StaticAnalyzer/Core/
CheckerManager.h 522 EventInfo &info = Events[getTag<EVENT>()];
528 EventInfo &info = Events[getTag<EVENT>()];
537 const EventInfo &info = I->second;
620 struct EventInfo {
623 EventInfo() : HasDispatcher(false) { }
626 typedef llvm::DenseMap<EventTag, EventInfo> EventsTy;

Completed in 1830 milliseconds

1 2 3 4