Lines Matching refs:mMotionMementos
33 for (const MotionMemento& memento : mMotionMementos) { in isHovering()
100 if (!mMotionMementos.empty()) { in trackMotion()
101 const MotionMemento& lastMemento = mMotionMementos.back(); in trackMotion()
116 mMotionMementos.erase(mMotionMementos.begin() + index); in trackMotion()
126 mMotionMementos.erase(mMotionMementos.begin() + index); in trackMotion()
152 mMotionMementos.erase(mMotionMementos.begin() + index); in trackMotion()
154 MotionMemento& memento = mMotionMementos[index]; in trackMotion()
166 MotionMemento& memento = mMotionMementos[index]; in trackMotion()
179 mMotionMementos.erase(mMotionMementos.begin() + index); in trackMotion()
190 mMotionMementos.erase(mMotionMementos.begin() + index); in trackMotion()
207 return std::make_pair(mMotionMementos[index].pointerProperties, in getPointersOfLastEvent()
208 mMotionMementos[index].pointerCoords); in getPointersOfLastEvent()
224 for (size_t i = 0; i < mMotionMementos.size(); i++) { in findMotionMemento()
225 const MotionMemento& memento = mMotionMementos[i]; in findMotionMemento()
262 mMotionMementos.push_back(memento); in addMotionMemento()
309 if (mMotionMementos.empty()) { in shouldCancelPreviousStream()
314 const MotionMemento& lastMemento = mMotionMementos.back(); in shouldCancelPreviousStream()
381 const MotionMemento& memento = mMotionMementos.back(); in cancelConflictingInputStream()
428 for (const MotionMemento& memento : mMotionMementos) { in synthesizeCancelationEvents()
447 for (MotionMemento& memento : mMotionMementos) { in synthesizePointerDownEvents()
555 mMotionMementos.clear(); in clear()
560 for (size_t i = 0; i < mMotionMementos.size(); i++) { in mergePointerStateTo()
561 MotionMemento& memento = mMotionMementos[i]; in mergePointerStateTo()
566 for (size_t j = 0; j < other.mMotionMementos.size(); j++) { in mergePointerStateTo()
567 MotionMemento& otherMemento = other.mMotionMementos[j]; in mergePointerStateTo()
578 other.mMotionMementos.push_back(memento); in mergePointerStateTo()
647 if (!state.mMotionMementos.empty()) { in operator <<()
649 for (const InputState::MotionMemento& memento : state.mMotionMementos) { in operator <<()