/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/native/include/input/ |
D | InputTransport.h | 580 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/ |
D | surfaceflinger_scheduler_fuzzer.cpp | 180 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/ |
D | HdmiControlShellCommand.java | 124 return historySize(pw); in handleShellCommand() 285 private int historySize(PrintWriter pw) throws RemoteException { in historySize() method in HdmiControlShellCommand
|
/frameworks/native/services/surfaceflinger/Scheduler/ |
D | VSyncPredictor.h | 38 VSyncPredictor(nsecs_t idealPeriod, size_t historySize, size_t minimumSamplesForPrediction,
|
D | VSyncPredictor.cpp | 48 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/ |
D | LongPressHandlingView.kt | 114 return if (historySize > 0) { in MotionEvent()
|
/frameworks/base/packages/EasterEgg/src/com/android/egg/paint/ |
D | SpotFilter.kt | 101 for (i in 0 until evt.historySize) { in add()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/ |
D | FalsingDataProvider.java | 324 int historySize = motionEvent.getHistorySize(); 325 for (int i = 0; i < historySize; i++) {
|
/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 | 3480 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()
|
D | ViewRootImpl.java | 7328 final int historySize = event.getHistorySize(); 7329 for (int h = 0; h < historySize; h++) {
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | SystemGesturesPointerEventListener.java | 270 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/ |
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/native/libs/input/ |
D | Input.cpp | 515 size_t historySize = other->getHistorySize(); in copyFrom() local 518 &other->mSamplePointerCoords[historySize * pointerCount], in copyFrom() 519 &other->mSamplePointerCoords[historySize * pointerCount + pointerCount]); in copyFrom()
|
D | VelocityTracker.cpp | 314 size_t historySize = event->getHistorySize(); in addMovement() local 315 for (size_t h = 0; h <= historySize; h++) { in addMovement()
|
D | InputTransport.cpp | 1099 if (touchState.historySize < 1) { in resampleTouchState() 1136 } else if (touchState.historySize >= 2) { in resampleTouchState()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | LockPatternView.java | 989 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/ |
D | KeyguardBottomAreaViewBinder.kt | 545 return if (event.historySize > 0) { in <lambda>()
|
/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()
|