Home
last modified time | relevance | path

Searched refs:SetOnWillShow (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/
H A Dtab_content_event_hub.h30 void SetOnWillShow(const std::function<void()>& onWillShow) in SetOnWillShow() function
H A Dtab_content_model_ng.h60 void SetOnWillShow(std::function<void()>&& onWillShow) override;
H A Dtab_content_model.h144 virtual void SetOnWillShow(std::function<void()>&& onWillShow) {} in SetOnWillShow() function
H A Dtab_content_model_ng.cpp631 void TabContentModelNG::SetOnWillShow(std::function<void()>&& onWillShow) in SetOnWillShow() function in OHOS::Ace::NG::TabContentModelNG
637 tabContentEventHub->SetOnWillShow(onWillShow); in SetOnWillShow()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_tab_content.h77 static void SetOnWillShow(const JSCallbackInfo& info);
H A Djs_tab_content.cpp669 void JSTabContent::SetOnWillShow(const JSCallbackInfo& info) in SetOnWillShow() function in OHOS::Ace::Framework::JSTabContent
681 TabContentModel::GetInstance()->SetOnWillShow(std::move(onWillShow)); in SetOnWillShow()
717 JSClass<JSTabContent>::StaticMethod("onWillShow", &JSTabContent::SetOnWillShow); in JSBind()
H A Djs_navdestination.cpp454 NavDestinationModel::GetInstance()->SetOnWillShow(std::move(onWillShow)); in SetWillShow()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dtab_content_model_impl.h44 void SetOnWillShow(std::function<void()>&& onWillShow) override {} in SetOnWillShow() function
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navrouter/
H A Dnavdestination_model.h48 virtual void SetOnWillShow(std::function<void()>&& willShow) = 0;
H A Dnavdestination_event_hub.h143 void SetOnWillShow(std::function<void()>& willShow) in SetOnWillShow() function
H A Dnavdestination_model_ng.h38 void SetOnWillShow(std::function<void()>&& willShow) override;
H A Dnavdestination_model_ng.cpp681 void NavDestinationModelNG::SetOnWillShow(std::function<void()>&& willShow) in SetOnWillShow() function in OHOS::Ace::NG::NavDestinationModelNG
687 navDestinationEventHub->SetOnWillShow(willShow); in SetOnWillShow()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/tabs/
H A Dtabs_event_test_ng.cpp664 tabContentModel.SetOnWillShow(std::move(showEvent));
728 tabContentModel.SetOnWillShow(std::move(showEvent));
788 tabContentModel.SetOnWillShow(std::move(showEvent));
843 tabContentModel.SetOnWillShow(std::move(showEvent));
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/navigation/
H A Dnavigation_lifecycle_test_ng.cpp112 eventHub->SetOnWillShow(callback); in SetEvent()