Home
last modified time | relevance | path

Searched refs:secondPointOffset (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/barrierfree/accessibility/services/aams/src/
H A Daccessibility_touch_guider.cpp860 std::vector<float> &secondPointOffset) const in GetPointOffset()
900 secondPointOffset.push_back(xPointS - xPointDownS); // secondOffsetX in GetPointOffset()
901 secondPointOffset.push_back(yPointS - yPointDownS); // secondOffsetY in GetPointOffset()
909 std::vector<float> secondPointOffset; in IsDragGestureAccept() local
910 GetPointOffset(event, firstPointOffset, secondPointOffset); in IsDragGestureAccept()
917 float secondOffsetX = secondPointOffset[0]; in IsDragGestureAccept()
918 float secondOffsetY = secondPointOffset[1]; in IsDragGestureAccept()
939 std::vector<float> secondPointOffset; in IsRealMoveState() local
940 GetPointOffset(event, firstPointOffset, secondPointOffset); in IsRealMoveState()
946 firstPointOffset[0], firstPointOffset[1], secondPointOffset[0], secondPointOffset[1]); in IsRealMoveState()
[all …]
/ohos5.0/foundation/barrierfree/accessibility/services/aams/include/
H A Daccessibility_touch_guider.h355 std::vector<float> &secondPointOffset) const;