Home
last modified time | relevance | path

Searched refs:historySize (Results 1 – 22 of 22) 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/native/include/input/
DInputTransport.h580 size_t historySize; member
588 historySize = 0; in initialize()
595 if (historySize < 2) { in addHistory()
596 historySize += 1; in addHistory()
607 if (historySize < 2) { in recentCoordinatesAreIdentical()
/frameworks/native/services/surfaceflinger/fuzzer/
Dsurfaceflinger_scheduler_fuzzer.cpp180 uint16_t historySize = mFdp.ConsumeIntegralInRange<uint16_t>(1, UINT16_MAX); in fuzzVSyncPredictor() local
182 scheduler::VSyncPredictor tracker{mFdp.ConsumeIntegral<uint16_t>() /*period*/, historySize, in fuzzVSyncPredictor()
225 uint8_t historySize = mFdp.ConsumeIntegral<uint8_t>(); in fuzzLayerHistory() local
230 for (int i = 0; i < historySize; ++i) { in fuzzLayerHistory()
/frameworks/base/services/core/java/com/android/server/hdmi/
DHdmiControlShellCommand.java124 return historySize(pw); in handleShellCommand()
285 private int historySize(PrintWriter pw) throws RemoteException { in historySize() method in HdmiControlShellCommand
/frameworks/native/services/surfaceflinger/Scheduler/
DVSyncPredictor.h38 VSyncPredictor(nsecs_t idealPeriod, size_t historySize, size_t minimumSamplesForPrediction,
DVSyncPredictor.cpp48 VSyncPredictor::VSyncPredictor(nsecs_t idealPeriod, size_t historySize, in VSyncPredictor() argument
51 kHistorySize(historySize), in VSyncPredictor()
/frameworks/base/packages/SystemUI/src/com/android/systemui/common/ui/view/
DLongPressHandlingView.kt114 return if (historySize > 0) { in MotionEvent()
/frameworks/base/packages/EasterEgg/src/com/android/egg/paint/
DSpotFilter.kt101 for (i in 0 until evt.historySize) { in add()
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
DFalsingDataProvider.java324 int historySize = motionEvent.getHistorySize();
325 for (int i = 0; i < historySize; i++) {
/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.java3480 final int historySize = nativeGetHistorySize(event.mNativePtr); in addBatch() local
3481 for (int h = 0; h <= historySize; h++) { in addBatch()
3482 final int historyPos = (h == historySize ? HISTORY_CURRENT : h); in addBatch()
3624 final int historySize = nativeGetHistorySize(mNativePtr); in split() local
3625 for (int h = 0; h <= historySize; h++) { in split()
3626 final int historyPos = h == historySize ? HISTORY_CURRENT : h; in split()
DViewRootImpl.java7328 final int historySize = event.getHistorySize();
7329 for (int h = 0; h < historySize; h++) {
/frameworks/base/services/core/java/com/android/server/wm/
DSystemGesturesPointerEventListener.java270 final int historySize = move.getHistorySize(); in detectSwipe() local
276 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/native/libs/input/
DInput.cpp515 size_t historySize = other->getHistorySize(); in copyFrom() local
518 &other->mSamplePointerCoords[historySize * pointerCount], in copyFrom()
519 &other->mSamplePointerCoords[historySize * pointerCount + pointerCount]); in copyFrom()
DVelocityTracker.cpp314 size_t historySize = event->getHistorySize(); in addMovement() local
315 for (size_t h = 0; h <= historySize; h++) { in addMovement()
DInputTransport.cpp1099 if (touchState.historySize < 1) { in resampleTouchState()
1136 } else if (touchState.historySize >= 2) { in resampleTouchState()
/frameworks/base/core/java/com/android/internal/widget/
DLockPatternView.java989 final int historySize = event.getHistorySize(); in handleActionMove() local
992 for (int i = 0; i < historySize + 1; i++) { in handleActionMove()
993 final float x = i < historySize ? event.getHistoricalX(i) : event.getX(); in handleActionMove()
994 final float y = i < historySize ? event.getHistoricalY(i) : event.getY(); in handleActionMove()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/
DKeyguardBottomAreaViewBinder.kt545 return if (event.historySize > 0) { in <lambda>()
/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()