Lines Matching refs:PointerController

47 void PointerController::DisplayInfoListener::onWindowInfosChanged(  in onWindowInfosChanged()
57 void PointerController::DisplayInfoListener::onPointerControllerDestroyed() { in onPointerControllerDestroyed()
64 std::shared_ptr<PointerController> PointerController::create( in create()
68 std::shared_ptr<PointerController> controller = std::shared_ptr<PointerController>( in create()
69 new PointerController(policy, looper, spriteController)); in create()
87 PointerController::PointerController(const sp<PointerControllerPolicyInterface>& policy, in PointerController() function in android::PointerController
90 : PointerController( in PointerController()
99 PointerController::PointerController(const sp<PointerControllerPolicyInterface>& policy, in PointerController() function in android::PointerController
113 PointerController::~PointerController() { in ~PointerController()
119 std::mutex& PointerController::getLock() const { in getLock()
123 std::optional<FloatRect> PointerController::getBounds() const { in getBounds()
127 void PointerController::move(float deltaX, float deltaY) { in move()
138 void PointerController::setPosition(float x, float y) { in setPosition()
149 FloatPoint PointerController::getPosition() const { in getPosition()
159 int32_t PointerController::getDisplayId() const { in getDisplayId()
163 void PointerController::fade(Transition transition) { in fade()
168 void PointerController::unfade(Transition transition) { in unfade()
173 void PointerController::setPresentation(Presentation presentation) { in setPresentation()
196 void PointerController::setSpots(const PointerCoords* spotCoords, const uint32_t* spotIdToIndex, in setSpots()
220 void PointerController::clearSpots() { in clearSpots()
225 void PointerController::clearSpotsLocked() { in clearSpotsLocked()
231 void PointerController::setInactivityTimeout(InactivityTimeout inactivityTimeout) { in setInactivityTimeout()
235 void PointerController::reloadPointerResources() { in reloadPointerResources()
244 if (mLocked.presentation == PointerController::Presentation::POINTER || in reloadPointerResources()
245 mLocked.presentation == PointerController::Presentation::STYLUS_HOVER) { in reloadPointerResources()
252 void PointerController::setDisplayViewport(const DisplayViewport& viewport) { in setDisplayViewport()
263 if (mLocked.presentation == PointerController::Presentation::POINTER || in setDisplayViewport()
264 mLocked.presentation == PointerController::Presentation::STYLUS_HOVER) { in setDisplayViewport()
281 void PointerController::updatePointerIcon(PointerIconStyle iconId) { in updatePointerIcon()
286 void PointerController::setCustomPointerIcon(const SpriteIcon& icon) { in setCustomPointerIcon()
291 void PointerController::doInactivityTimeout() { in doInactivityTimeout()
295 void PointerController::onDisplayViewportsUpdated(std::vector<DisplayViewport>& viewports) { in onDisplayViewportsUpdated()
317 void PointerController::onDisplayInfosChangedLocked( in onDisplayInfosChangedLocked()
322 const ui::Transform& PointerController::getTransformForDisplayLocked(int displayId) const { in getTransformForDisplayLocked()
330 void PointerController::dump(std::string& dump) { in dump()