/frameworks/base/services/tests/servicestests/res/raw/ |
D | a11y_three_finger_swipe_down_gesture.log | 2 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=52… 3 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=2, historySize=0, eventTime=52… 4 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=2, historySize=0, eventTime=52… 5 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=3, historySize=0, eventTime=52… 6 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=3, historySize=0, eventTime=52… 7 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=3, historySize=0, eventTime=52… 8 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=3, historySize=0, eventTime=52… 9 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=3, historySize=0, eventTime=52… 10 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=3, historySize=0, eventTime=52… 11 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=3, historySize=0, eventTime=52… [all …]
|
D | a11y_touch_explore_gesture.log | 2 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=52… 3 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=52… 4 …ification=NONE, metaState=0, flags=0x0, edgeFlags=0x0, pointerCount=1, historySize=0, eventTime=52…
|
/frameworks/base/core/jni/ |
D | android_view_MotionEvent.cpp | 167 static bool validateHistoryPos(JNIEnv* env, jint historyPos, size_t historySize) { in validateHistoryPos() argument 168 if (historyPos < 0 || size_t(historyPos) >= historySize) { in validateHistoryPos() 433 size_t historySize = event->getHistorySize(); in android_view_MotionEvent_nativeGetPointerCoords() local 434 if (!validateHistoryPos(env, historyPos, historySize)) { in android_view_MotionEvent_nativeGetPointerCoords() 525 size_t historySize = event->getHistorySize(); in android_view_MotionEvent_nativeGetEventTimeNanos() local 526 if (!validateHistoryPos(env, historyPos, historySize)) { in android_view_MotionEvent_nativeGetEventTimeNanos() 545 size_t historySize = event->getHistorySize(); in android_view_MotionEvent_nativeGetRawAxisValue() local 546 if (!validateHistoryPos(env, historyPos, historySize)) { in android_view_MotionEvent_nativeGetRawAxisValue() 564 size_t historySize = event->getHistorySize(); in android_view_MotionEvent_nativeGetAxisValue() local 565 if (!validateHistoryPos(env, historyPos, historySize)) { in android_view_MotionEvent_nativeGetAxisValue()
|
/frameworks/native/include/input/ |
D | InputTransport.h | 576 size_t historySize; member 584 historySize = 0; in initialize() 591 if (historySize < 2) { in addHistory() 592 historySize += 1; in addHistory() 603 if (historySize < 2) { in recentCoordinatesAreIdentical()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
D | FalsingDataProvider.java | 276 int historySize = motionEvent.getHistorySize(); in unpackMotionEvent() local 277 for (int i = 0; i < historySize; i++) { in unpackMotionEvent()
|
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | VSyncPredictor.h | 37 VSyncPredictor(nsecs_t idealPeriod, size_t historySize, size_t minimumSamplesForPrediction,
|
D | VSyncPredictor.cpp | 45 VSyncPredictor::VSyncPredictor(nsecs_t idealPeriod, size_t historySize, in VSyncPredictor() argument 48 kHistorySize(historySize), in VSyncPredictor()
|
/frameworks/base/packages/EasterEgg/src/com/android/egg/paint/ |
D | SpotFilter.kt | 101 for (i in 0 until evt.historySize) { in add()
|
/frameworks/base/core/java/android/view/ |
D | InputEventConsistencyVerifier.java | 643 final int historySize = event.getHistorySize(); in ensureHistorySizeIsZeroForThisAction() local 644 if (historySize != 0) { in ensureHistorySizeIsZeroForThisAction() 645 problem("History size is " + historySize + " but it should always be 0 for " in ensureHistorySizeIsZeroForThisAction()
|
D | MotionEvent.java | 3391 final int historySize = nativeGetHistorySize(event.mNativePtr); in addBatch() local 3392 for (int h = 0; h <= historySize; h++) { in addBatch() 3393 final int historyPos = (h == historySize ? HISTORY_CURRENT : h); in addBatch() 3535 final int historySize = nativeGetHistorySize(mNativePtr); in split() local 3536 for (int h = 0; h <= historySize; h++) { in split() 3537 final int historyPos = h == historySize ? HISTORY_CURRENT : h; in split()
|
D | ViewRootImpl.java | 6894 final int historySize = event.getHistorySize(); 6895 for (int h = 0; h < historySize; h++) {
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | SystemGesturesPointerEventListener.java | 248 final int historySize = move.getHistorySize(); in detectSwipe() local 254 for (int h = 0; h < historySize; h++) { in detectSwipe()
|
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/ |
D | SinkActivity.java | 360 final int historySize = event.getHistorySize(); in sendHidTouch() local 364 for (int h = 0; h < historySize; h++) { in sendHidTouch()
|
/frameworks/base/core/java/android/widget/ |
D | ActivityChooserView.java | 558 final int historySize = mAdapter.getHistorySize(); in updateAppearance() local 559 if (activityCount==1 || activityCount > 1 && historySize > 0) { in updateAppearance()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | LockPatternView.java | 965 final int historySize = event.getHistorySize(); in handleActionMove() local 968 for (int i = 0; i < historySize + 1; i++) { in handleActionMove() 969 final float x = i < historySize ? event.getHistoricalX(i) : event.getX(); in handleActionMove() 970 final float y = i < historySize ? event.getHistoricalY(i) : event.getY(); in handleActionMove()
|
/frameworks/native/libs/input/ |
D | Input.cpp | 468 size_t historySize = other->getHistorySize(); in copyFrom() local 470 + (historySize * pointerCount), pointerCount); in copyFrom()
|
D | VelocityTracker.cpp | 295 size_t historySize = event->getHistorySize(); in addMovement() local 296 for (size_t h = 0; h <= historySize; h++) { in addMovement()
|
D | InputTransport.cpp | 1062 if (touchState.historySize < 1) { in resampleTouchState() 1099 } else if (touchState.historySize >= 2) { in resampleTouchState()
|
/frameworks/base/services/core/java/com/android/server/appop/ |
D | HistoricalRegistry.java | 592 final int historySize = history.size(); in offsetHistory() local 593 for (int i = 0; i < historySize; i++) { in offsetHistory()
|