Home | History | Annotate | Download | only in inputflinger

Lines Matching full:hovering

2929         // Send hover move after UP to tell the application that the mouse is hovering now.
4333 "hovering ids 0x%08x -> 0x%08x",
5400 // the pointer is hovering again even if the user is not currently touching
6233 bool down, hovering;
6241 hovering = mCurrentCookedState.cookedPointerData.hoveringIdBits.hasBit(id);
6242 down = !hovering;
6254 hovering = false;
6257 dispatchPointerSimple(when, policyFlags, down, hovering);
6268 bool down, hovering;
6291 hovering = !down;
6300 hovering ? 0.0f : 1.0f);
6308 hovering = false;
6311 dispatchPointerSimple(when, policyFlags, down, hovering);
6321 bool down, bool hovering) {
6325 if (down || hovering) {
6330 } else if (!down && !hovering && (mPointerSimple.down || mPointerSimple.hovering)) {
6348 if (mPointerSimple.hovering && !hovering) {
6349 mPointerSimple.hovering = false;
6386 if (hovering) {
6387 if (!mPointerSimple.hovering) {
6388 mPointerSimple.hovering = true;
6434 if (down || hovering) {
6599 // transition from hovering to touching or vice-versa while retaining the same id.