Home
last modified time | relevance | path

Searched refs:CreateTouchEventInfo (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/gestures/
H A Draw_recognizer.cpp34 callback(CreateTouchEventInfo(ON_TOUCH_MOVE_EVENT, point)); in HandleRawEvent()
41 callback(CreateTouchEventInfo(ON_TOUCH_DOWN_EVENT, point)); in HandleRawEvent()
49 callback(CreateTouchEventInfo(ON_TOUCH_UP_EVENT, point, true)); in HandleRawEvent()
57 callback(CreateTouchEventInfo(ON_TOUCH_CANCEL_EVENT, point, true)); in HandleRawEvent()
111 TouchEventInfo RawRecognizer::CreateTouchEventInfo( in CreateTouchEventInfo() function in OHOS::Ace::RawRecognizer
H A Draw_recognizer.h95 TouchEventInfo CreateTouchEventInfo(
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/swiper/
H A Dswiper_common_test_ng.cpp97 pattern_->HandleTouchEvent(CreateTouchEventInfo(TouchType::UNKNOWN, Offset()));
123 pattern_->HandleTouchEvent(CreateTouchEventInfo(TouchType::DOWN, Offset()));
133 pattern_->HandleTouchEvent(CreateTouchEventInfo(TouchType::UP, Offset()));
154 pattern_->HandleTouchEvent(CreateTouchEventInfo(TouchType::DOWN, Offset()));
162 pattern_->HandleTouchEvent(CreateTouchEventInfo(TouchType::CANCEL, Offset()));
181 …pattern_->HandleTouchEvent(CreateTouchEventInfo(TouchType::DOWN, Offset(SWIPER_WIDTH / 2, SWIPER_H…
189 …pattern_->HandleTouchEvent(CreateTouchEventInfo(TouchType::UP, Offset(SWIPER_WIDTH / 2, SWIPER_HEI…
210 …pattern_->HandleTouchEvent(CreateTouchEventInfo(TouchType::DOWN, Offset(SWIPER_WIDTH / 2, SWIPER_H…
H A Dswiper_indicator_test_ng.cpp61 indicatorPattern->HandleTouchEvent(CreateTouchEventInfo(TouchType::DOWN, touchPoint)); in TouchClickIndicator()
62 indicatorPattern->HandleTouchEvent(CreateTouchEventInfo(TouchType::UP, touchPoint)); in TouchClickIndicator()
74 indicatorPattern->HandleTouchEvent(CreateTouchEventInfo(TouchType::DOWN, startPoint)); in LongPressIndicator()
79 indicatorPattern->HandleTouchEvent(CreateTouchEventInfo(TouchType::MOVE, endPoint)); in LongPressIndicator()
80 indicatorPattern->HandleTouchEvent(CreateTouchEventInfo(TouchType::UP, endPoint)); in LongPressIndicator()
H A Dswiper_indicator_common_test_ng.cpp298 auto touchEventInfo = CreateTouchEventInfo(TouchType::CANCEL, Offset());
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/indexer/
H A Dindexer_test_ng.cpp84 TouchEventInfo touchEventInfo = CreateTouchEventInfo(touchType, Offset()); in OnPopupTouchDown()
101 TouchEventInfo touchEventInfo = CreateTouchEventInfo(touchType, Offset()); in ListItemClick()
H A Dindexer_select_test_ng.cpp37 …TouchEventInfo touchEventInfo = CreateTouchEventInfo(touchType, Offset(0.f, locationY + firstOffse… in Touch()
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/common/
H A Dmock_raw_recognizer.cpp33 TouchEventInfo RawRecognizer::CreateTouchEventInfo( in CreateTouchEventInfo() function in OHOS::Ace::RawRecognizer
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dtouch_event.cpp79 auto event = CreateTouchEventInfo(lastPoint); in TriggerTouchCallBack()
114 TouchEventInfo TouchEventActuator::CreateTouchEventInfo(const TouchEvent& lastPoint) in CreateTouchEventInfo() function in OHOS::Ace::NG::TouchEventActuator
H A Dtouch_event.h161 TouchEventInfo CreateTouchEventInfo(const TouchEvent& lastPoint);
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/
H A Dtest_ng.cpp103 TouchEventInfo TestNG::CreateTouchEventInfo(TouchType touchType, Offset location) in CreateTouchEventInfo() function in OHOS::Ace::NG::TestNG
H A Dtest_ng.h48 TouchEventInfo CreateTouchEventInfo(TouchType touchType, Offset location);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_frame_node_bridge.h40 static Local<panda::ObjectRef> CreateTouchEventInfo(EcmaVM* vm, TouchEventInfo& info);
H A Darkts_native_frame_node_bridge.cpp559 Local<panda::ObjectRef> FrameNodeBridge::CreateTouchEventInfo(EcmaVM* vm, TouchEventInfo& info) in CreateTouchEventInfo() function in OHOS::Ace::NG::FrameNodeBridge
637 auto eventObj = CreateTouchEventInfo(vm, info); in SetOnTouch()
H A Darkts_native_common_bridge.cpp6856 auto eventObj = FrameNodeBridge::CreateTouchEventInfo(vm, info); in SetOnTouch()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/list/
H A Dlist_layout_test_ng.cpp1157 TouchEventInfo info = CreateTouchEventInfo(TouchType::DOWN, Offset());
1162 info = CreateTouchEventInfo(TouchType::MOVE, Offset());
1167 info = CreateTouchEventInfo(TouchType::UP, Offset());
1179 info = CreateTouchEventInfo(TouchType::DOWN, Offset());
1183 info = CreateTouchEventInfo(TouchType::CANCEL, Offset());
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/grid/
H A Dgrid_attr_test_ng.cpp1054 auto info = CreateTouchEventInfo(TouchType::DOWN, Offset::Zero());
1062 info = CreateTouchEventInfo(TouchType::MOVE, Offset(10.f, 10.f));
1070 info = CreateTouchEventInfo(TouchType::UP, Offset(10.f, 10.f));
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_interactable_view.cpp69 auto eventObj = NG::FrameNodeBridge::CreateTouchEventInfo(vm, info); in JsOnTouch()