Home
last modified time | relevance | path

Searched refs:mMovements (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/libs/input/
DVelocityTracker.cpp391 mMovements.erase(pointerId); in clearPointer()
396 auto [ringBufferIt, _] = mMovements.try_emplace(pointerId, HISTORY_SIZE); in addMovement()
649 const auto movementIt = mMovements.find(pointerId); in getVelocity()
650 if (movementIt == mMovements.end()) { in getVelocity()
693 const RingBuffer<Movement>& movements = mMovements.at(pointerId); in chooseWeight()
846 const auto movementIt = mMovements.find(pointerId); in getVelocity()
847 if (movementIt == mMovements.end()) { in getVelocity()
995 const auto movementIt = mMovements.find(pointerId); in getVelocity()
996 if (movementIt == mMovements.end()) { in getVelocity()
/frameworks/native/include/input/
DVelocityTracker.h188 std::map<int32_t /*pointerId*/, RingBuffer<Movement>> mMovements; variable