Home
last modified time | relevance | path

Searched refs:onAction_ (Results 1 – 13 of 13) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/gestures/
H A Dlong_press_recognizer.cpp41 SendCallbackMsg(onAction_, false); in OnAccepted()
197 SendCallbackMsg(onAction_, true); in DoRepeat()
289 onAction_ = std::move(curr->onAction_); in ReconcileFrom()
H A Dgesture_recognizer.h106 onAction_ = std::make_unique<GestureEventFunc>(onAction); in SetOnAction()
170 std::unique_ptr<GestureEventFunc> onAction_; variable
H A Dslide_recognizer.cpp179 SendCallbackMsg(onAction_); in HandleTouchUpEvent()
210 SendCallbackMsg(onAction_); in HandleTouchUpEvent()
435 onAction_ = std::move(curr->onAction_); in ReconcileFrom()
H A Dclick_recognizer.cpp104 SendCallbackMsg(onAction_); in OnAccepted()
332 onAction_ = std::move(curr->onAction_); in ReconcileFrom()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/recognizers/
H A Dlong_press_recognizer.cpp87 SendCallbackMsg(onAction_, false, true); in OnAccepted()
327 SendCallbackMsg(onAction_, true, true); in DoRepeat()
424 onAction_ = std::move(curr->onAction_); in ReconcileFrom()
439 if (longPressRecognizer->onAction_) { in GetLongPressActionFunc()
440 (*(longPressRecognizer->onAction_))(info); in GetLongPressActionFunc()
H A Dclick_recognizer.h83 if (clickRecognizer->onAction_) { in GetTapActionFunc()
84 (*(clickRecognizer->onAction_))(info); in GetTapActionFunc()
H A Dlong_press_recognizer.h66 if (onAction_ && *onAction_) { in HasAction()
H A Dswipe_recognizer.cpp81 SendCallbackMsg(onAction_); in OnAccepted()
484 onAction_ = std::move(curr->onAction_); in ReconcileFrom()
H A Dgesture_recognizer.h178 onAction_ = std::make_unique<GestureEventFunc>(onAction); in SetOnAction()
464 std::unique_ptr<GestureEventFunc> onAction_; variable
H A Dclick_recognizer.cpp195 SendCallbackMsg(onAction_); in OnAccepted()
555 onAction_ = std::move(curr->onAction_); in ReconcileFrom()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/event/
H A Dclick_event_test_ng.cpp223 (*clickEventActuator.clickRecognizer_->onAction_)(info);
242 (*clickEventActuator.clickRecognizer_->onAction_)(info);
H A Ddrag_event_test_ng.cpp546 EXPECT_NE(dragEventActuator->previewLongPressRecognizer_->onAction_, nullptr);
553 (*(dragEventActuator->longPressRecognizer_->onAction_))(info);
556 (*(dragEventActuator->longPressRecognizer_->onAction_))(info);
565 (*(dragEventActuator->previewLongPressRecognizer_->onAction_))(info);
574 (*(dragEventActuator->previewLongPressRecognizer_->onAction_))(info);
583 (*(dragEventActuator->previewLongPressRecognizer_->onAction_))(info);
591 (*(dragEventActuator->previewLongPressRecognizer_->onAction_))(info);
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/scroll_bar/
H A Dscroll_bar_event_test_ng.cpp57 auto handleLongPress = *(pattern_->longPressRecognizer_->onAction_); in HandleLongPress()