Lines Matching refs:TouchedWindow
41 bool TouchedWindow::hasHoveringPointers() const { in hasHoveringPointers()
50 bool TouchedWindow::hasHoveringPointers(DeviceId deviceId) const { in hasHoveringPointers()
60 void TouchedWindow::clearHoveringPointers(DeviceId deviceId) { in clearHoveringPointers()
72 bool TouchedWindow::hasHoveringPointer(DeviceId deviceId, int32_t pointerId) const { in hasHoveringPointer()
81 void TouchedWindow::addHoveringPointer(DeviceId deviceId, const PointerProperties& pointer) { in addHoveringPointer()
93 Result<void> TouchedWindow::addTouchingPointers(DeviceId deviceId, in addTouchingPointers()
112 bool TouchedWindow::hasTouchingPointers() const { in hasTouchingPointers()
121 bool TouchedWindow::hasTouchingPointers(DeviceId deviceId) const { in hasTouchingPointers()
125 bool TouchedWindow::hasTouchingPointer(DeviceId deviceId, int32_t pointerId) const { in hasTouchingPointer()
134 std::vector<PointerProperties> TouchedWindow::getTouchingPointers(DeviceId deviceId) const { in getTouchingPointers()
143 void TouchedWindow::removeTouchingPointer(DeviceId deviceId, int32_t pointerId) { in removeTouchingPointer()
150 void TouchedWindow::removeTouchingPointers(DeviceId deviceId, in removeTouchingPointers()
169 bool TouchedWindow::hasActiveStylus() const { in hasActiveStylus()
185 std::set<DeviceId> TouchedWindow::getTouchingDeviceIds() const { in getTouchingDeviceIds()
195 bool TouchedWindow::hasPilferingPointers(DeviceId deviceId) const { in hasPilferingPointers()
205 void TouchedWindow::addPilferingPointers(DeviceId deviceId, in addPilferingPointers()
210 void TouchedWindow::addPilferingPointer(DeviceId deviceId, int32_t pointerId) { in addPilferingPointer()
214 std::bitset<MAX_POINTER_ID + 1> TouchedWindow::getPilferingPointers(DeviceId deviceId) const { in getPilferingPointers()
224 std::map<DeviceId, std::bitset<MAX_POINTER_ID + 1>> TouchedWindow::getPilferingPointers() const { in getPilferingPointers()
232 std::optional<nsecs_t> TouchedWindow::getDownTimeInTarget(DeviceId deviceId) const { in getDownTimeInTarget()
241 void TouchedWindow::trySetDownTimeInTarget(DeviceId deviceId, nsecs_t downTime) { in trySetDownTimeInTarget()
250 void TouchedWindow::removeAllTouchingPointersForDevice(DeviceId deviceId) { in removeAllTouchingPointersForDevice()
266 void TouchedWindow::removeHoveringPointer(DeviceId deviceId, int32_t pointerId) { in removeHoveringPointer()
282 void TouchedWindow::removeAllHoveringPointersForDevice(DeviceId deviceId) { in removeAllHoveringPointersForDevice()
296 std::string TouchedWindow::deviceStateToString(const TouchedWindow::DeviceState& state) { in deviceStateToString()
305 std::string TouchedWindow::dump() const { in dump()
308 dumpMap(mDeviceStates, constToString, TouchedWindow::deviceStateToString); in dump()
315 std::ostream& operator<<(std::ostream& out, const TouchedWindow& window) { in operator <<()