Home
last modified time | relevance | path

Searched refs:pointerGestureTapSlop (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/native/services/inputflinger/include/
H A DInputReaderBase.h242 float pointerGestureTapSlop; // in pixels member
297 pointerGestureTapSlop(10.0f), // 10 pixels in InputReaderConfiguration()
/aosp12/frameworks/native/services/inputflinger/reader/
H A DInputReader.cpp858 dump += StringPrintf(INDENT3 "TapSlop: %0.1fpx\n", mConfig.pointerGestureTapSlop); in dump()
/aosp12/frameworks/native/services/inputflinger/reader/mapper/
H A DTouchInputMapper.cpp2878 if (fabs(x - mPointerGesture.tapX) <= mConfig.pointerGestureTapSlop && in preparePointerGestures()
2879 fabs(y - mPointerGesture.tapY) <= mConfig.pointerGestureTapSlop) { in preparePointerGestures()
2946 if (fabs(x - mPointerGesture.tapX) <= mConfig.pointerGestureTapSlop && in preparePointerGestures()
2947 fabs(y - mPointerGesture.tapY) <= mConfig.pointerGestureTapSlop) { in preparePointerGestures()
/aosp12/frameworks/base/services/core/jni/
H A Dcom_android_server_input_InputManagerService.cpp626 outConfig->pointerGestureTapSlop = hoverTapSlop; in getReaderConfiguration()