Home
last modified time | relevance | path

Searched refs:historySize (Results 1 – 19 of 19) sorted by relevance

/frameworks/base/services/tests/servicestests/res/raw/
Da11y_three_finger_swipe_down_gesture.log2 …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 …]
Da11y_touch_explore_gesture.log2 …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/
Dandroid_view_MotionEvent.cpp167 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/
DInputTransport.h576 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/
DFalsingDataProvider.java276 int historySize = motionEvent.getHistorySize(); in unpackMotionEvent() local
277 for (int i = 0; i < historySize; i++) { in unpackMotionEvent()
/frameworks/native/services/surfaceflinger/Scheduler/
DVSyncPredictor.h37 VSyncPredictor(nsecs_t idealPeriod, size_t historySize, size_t minimumSamplesForPrediction,
DVSyncPredictor.cpp45 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/
DSpotFilter.kt101 for (i in 0 until evt.historySize) { in add()
/frameworks/base/core/java/android/view/
DInputEventConsistencyVerifier.java643 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()
DMotionEvent.java3391 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()
DViewRootImpl.java6894 final int historySize = event.getHistorySize();
6895 for (int h = 0; h < historySize; h++) {
/frameworks/base/services/core/java/com/android/server/wm/
DSystemGesturesPointerEventListener.java248 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/
DSinkActivity.java360 final int historySize = event.getHistorySize(); in sendHidTouch() local
364 for (int h = 0; h < historySize; h++) { in sendHidTouch()
/frameworks/base/core/java/android/widget/
DActivityChooserView.java558 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/
DLockPatternView.java965 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/
DInput.cpp468 size_t historySize = other->getHistorySize(); in copyFrom() local
470 + (historySize * pointerCount), pointerCount); in copyFrom()
DVelocityTracker.cpp295 size_t historySize = event->getHistorySize(); in addMovement() local
296 for (size_t h = 0; h <= historySize; h++) { in addMovement()
DInputTransport.cpp1062 if (touchState.historySize < 1) { in resampleTouchState()
1099 } else if (touchState.historySize >= 2) { in resampleTouchState()
/frameworks/base/services/core/java/com/android/server/appop/
DHistoricalRegistry.java592 final int historySize = history.size(); in offsetHistory() local
593 for (int i = 0; i < historySize; i++) { in offsetHistory()