Home | History | Annotate | Download | only in inputflinger

Lines Matching defs:hovering

2732         // Send hover move after UP to tell the application that the mouse is hovering now.
4088 "hovering ids 0x%08x -> 0x%08x",
5141 // the pointer is hovering again even if the user is not currently touching
5992 bool down, hovering;
6000 hovering = mCurrentCookedState.cookedPointerData.hoveringIdBits.hasBit(id);
6001 down = !hovering;
6013 hovering = false;
6016 dispatchPointerSimple(when, policyFlags, down, hovering);
6027 bool down, hovering;
6050 hovering = !down;
6059 hovering ? 0.0f : 1.0f);
6069 hovering = false;
6072 dispatchPointerSimple(when, policyFlags, down, hovering);
6082 bool down, bool hovering) {
6086 if (down || hovering) {
6091 } else if (!down && !hovering && (mPointerSimple.down || mPointerSimple.hovering)) {
6109 if (mPointerSimple.hovering && !hovering) {
6110 mPointerSimple.hovering = false;
6147 if (hovering) {
6148 if (!mPointerSimple.hovering) {
6149 mPointerSimple.hovering = true;
6195 if (down || hovering) {
6360 // transition from hovering to touching or vice-versa while retaining the same id.