Searched defs:eventType (Results 1 - 12 of 12) sorted by relevance

/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityEventSource.java36 * @param eventType The event type.
38 public void sendAccessibilityEvent(int eventType); argument
H A DAccessibilityEvent.java341 * @param eventType The event type.
343 public void setEventType(int eventType) { argument
344 mEventType = eventType;
559 * @param eventType The event type.
562 public static AccessibilityEvent obtain(int eventType) { argument
564 event.setEventType(eventType);
/frameworks/base/core/java/android/speech/
H A DRecognitionListener.java94 * @param eventType the type of the occurred event
97 void onEvent(int eventType, Bundle params); argument
H A DSpeechRecognizer.java475 public void onEvent(final int eventType, final Bundle params) { argument
476 Message.obtain(mInternalHandler, MSG_ON_EVENT, eventType, eventType, params)
/frameworks/base/core/java/android/os/
H A DLocalPowerManager.java47 void userActivity(long time, boolean noChangeLights, int eventType); argument
/frameworks/base/services/java/com/android/server/
H A DAccessibilityManagerService.java118 int eventType = message.arg1;
121 notifyEventListenerLocked(service, eventType);
122 AccessibilityEvent oldEvent = service.mPendingEvents.get(eventType);
123 service.mPendingEvents.remove(eventType);
402 int eventType = event.getEventType();
403 AccessibilityEvent oldEvent = service.mPendingEvents.get(eventType);
404 service.mPendingEvents.put(eventType, event);
406 int what = eventType | (service.mId << 16);
428 int eventType = event.getEventType();
434 if (service.mPendingEvents.get(eventType)
447 notifyEventListenerLocked(Service service, int eventType) argument
[all...]
H A DPowerManagerService.java2009 public void userActivity(long time, boolean noChangeLights, int eventType) { argument
2010 userActivity(time, -1, noChangeLights, eventType, false);
2013 public void userActivity(long time, boolean noChangeLights, int eventType, boolean force) { argument
2014 userActivity(time, -1, noChangeLights, eventType, force);
2028 int eventType, boolean force) {
2032 && (eventType == CHEEK_EVENT || eventType == TOUCH_EVENT)) {
2040 && (eventType == TOUCH_EVENT || eventType == TOUCH_UP_EVENT
2041 || eventType
2027 userActivity(long time, long timeoutOverride, boolean noChangeLights, int eventType, boolean force) argument
[all...]
H A DWindowManagerService.java4989 private final void wakeupIfNeeded(WindowState targetWin, int eventType) { argument
4992 if (eventType == TOUCH_EVENT || eventType == LONG_TOUCH_EVENT || eventType == CHEEK_EVENT) {
4993 if (mLastTouchEventType == eventType &&
4998 mLastTouchEventType = eventType;
5003 mPowerManager.userActivity(curTime, false, eventType, false);
5016 private int eventType(MotionEvent ev) { method in class:WindowManagerService
6051 wakeupIfNeeded(target, eventType(nextMotion));
6539 int eventType;
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java1379 public void sendAccessibilityEvent(int eventType) { argument
1382 mContentView.sendAccessibilityEvent(eventType);
1384 super.sendAccessibilityEvent(eventType);
/frameworks/policies/base/phone/com/android/internal/policy/impl/
H A DPhoneWindow.java1766 public void sendAccessibilityEvent(int eventType) { argument
1779 getChildAt(0).sendAccessibilityEvent(eventType);
1781 super.sendAccessibilityEvent(eventType);
/frameworks/base/core/java/android/view/
H A DView.java2677 public void sendAccessibilityEvent(int eventType) { argument
2679 sendAccessibilityEventUnchecked(AccessibilityEvent.obtain(eventType));
/frameworks/base/services/java/com/android/server/am/
H A DActivityManagerService.java9160 * @param eventType to include in the drop box tag ("crash", "wtf", etc.)
9169 public void addErrorToDropBox(String eventType, argument
9185 final String dropboxTag = prefix + eventType;

Completed in 432 milliseconds