Home
last modified time | relevance | path

Searched refs:deepRenderFunc (Results 1 – 24 of 24) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_item_model_ng.cpp37 void GridItemModelNG::Create(std::function<void(int32_t)>&& deepRenderFunc, bool isLazy, GridItemSt… in Create() argument
46 auto deepRender = [nodeId, deepRenderFunc = std::move(deepRenderFunc)]() -> RefPtr<UINode> { in Create()
47 CHECK_NULL_RETURN(deepRenderFunc, nullptr); in Create()
49 deepRenderFunc(nodeId); in Create()
H A Dgrid_item_model.h32 … std::function<void(int32_t)>&& deepRenderFunc, bool isLazy, NG::GridItemStyle gridItemStyle) = 0;
H A Dgrid_item_model_ng.h28 …void Create(std::function<void(int32_t)>&& deepRenderFunc, bool isLazy, GridItemStyle gridItemStyl…
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_item_model_ng.cpp32 void ListItemModelNG::Create(std::function<void(int32_t)>&& deepRenderFunc, V2::ListItemStyle listI… in Create() argument
37 if (deepRenderFunc) { in Create()
38 auto deepRender = [nodeId, deepRenderFunc = std::move(deepRenderFunc)]() -> RefPtr<UINode> { in Create()
39 CHECK_NULL_RETURN(deepRenderFunc, nullptr); in Create()
41 deepRenderFunc(nodeId); in Create()
H A Dlist_item_model.h37 …virtual void Create(std::function<void(int32_t)>&& deepRenderFunc, V2::ListItemStyle listItemStyle…
H A Dlist_item_model_ng.h28 …void Create(std::function<void(int32_t)>&& deepRenderFunc, V2::ListItemStyle listItemStyle) overri…
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dshallow_builder.h35 …explicit ShallowBuilder(DeepRenderFunc&& deepRenderFunc) : deepRenderFunc_(std::move(deepRenderFun… in ShallowBuilder() argument
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Dgrid_layout_item_component.h130 void SetDeepRenderFunc(const DeepRenderFunc& deepRenderFunc) in SetDeepRenderFunc() argument
132 deepRenderFunc_ = deepRenderFunc; in SetDeepRenderFunc()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/list/
H A Dlist_item_component.h107 void SetDeepRenderFunc(const DeepRenderFunc& deepRenderFunc) in SetDeepRenderFunc() argument
109 deepRenderFunc_ = deepRenderFunc; in SetDeepRenderFunc()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dgrid_item_model_impl.cpp36 std::function<void(int32_t)>&& deepRenderFunc, bool isLazy, NG::GridItemStyle gridItemStyle) in Create() argument
39 DeepRenderFunc gridItemDeepRenderFunc = [func = std::move(deepRenderFunc), in Create()
H A Dlist_item_model_impl.cpp35 void ListItemModelImpl::Create(std::function<void(int32_t)>&& deepRenderFunc, V2::ListItemStyle lis… in Create() argument
39 V2::DeepRenderFunc listItemDeepRenderFunc = [jsDeepRenderFunc = std::move(deepRenderFunc), in Create()
H A Dtab_content_model_impl.cpp59 void TabContentModelImpl::Create(std::function<void()>&& deepRenderFunc) in Create() argument
73 auto jsWrapperFunc = [builder = std::move(deepRenderFunc)]() -> RefPtr<Component> { in Create()
H A Dgrid_item_model_impl.h27 …void Create(std::function<void(int32_t)>&& deepRenderFunc, bool isLazy, NG::GridItemStyle gridItem…
H A Dlist_item_model_impl.h28 …void Create(std::function<void(int32_t)>&& deepRenderFunc, V2::ListItemStyle listItemStyle) overri…
H A Dtab_content_model_impl.h26 void Create(std::function<void()>&& deepRenderFunc) override;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/
H A Dtab_content_model_ng.cpp50 void TabContentModelNG::Create(std::function<void()>&& deepRenderFunc) in Create() argument
54 auto deepRender = [nodeId, deepRenderFunc = std::move(deepRenderFunc)]() -> RefPtr<UINode> { in Create()
55 CHECK_NULL_RETURN(deepRenderFunc, nullptr); in Create()
57 deepRenderFunc(); in Create()
H A Dtab_content_model_ng.h36 void Create(std::function<void()>&& deepRenderFunc) override;
H A Dtab_content_model.h128 virtual void Create(std::function<void()>&& deepRenderFunc) = 0;
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/navrouter/
H A Dnavrouter_pattern_test_ng.cpp300 auto deepRenderFunc = [&deepRenderCalled]() { deepRenderCalled = true; }; in __anonb76c86de0502() variable
301 …navDestinationModel.Create(std::move(deepRenderFunc), AceType::MakeRefPtr<NavDestinationContext>()…
336 auto deepRenderFunc = [&deepRenderCalled]() { deepRenderCalled = true; }; in __anonb76c86de0602() variable
337 …navDestinationModel.Create(std::move(deepRenderFunc), AceType::MakeRefPtr<NavDestinationContext>()…
372 auto deepRenderFunc = [&deepRenderCalled]() { deepRenderCalled = true; }; in __anonb76c86de0702() variable
373 …navDestinationModel.Create(std::move(deepRenderFunc), AceType::MakeRefPtr<NavDestinationContext>()…
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navrouter/
H A Dnavdestination_model_ng.cpp330 void NavDestinationModelNG::Create(std::function<void()>&& deepRenderFunc, RefPtr<NG::NavDestinatio… in Create() argument
335 auto deepRender = [nodeId, deepRenderFunc = std::move(deepRenderFunc)]() -> RefPtr<UINode> { in Create()
336 CHECK_NULL_RETURN(deepRenderFunc, nullptr); in Create()
344 deepRenderFunc(); in Create()
H A Dnavdestination_model.h35 … std::function<void()>&& deepRenderFunc, RefPtr<NG::NavDestinationContext> context = nullptr) = 0;
H A Dnavdestination_model_ng.h26 …void Create(std::function<void()>&& deepRenderFunc, RefPtr<NG::NavDestinationContext> context = nu…
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/tabs/
H A Dtabs_attr_test_ng.cpp1258 …auto deepRenderFunc = []() { AceType::MakeRefPtr<FrameNode>("test", 1, AceType::MakeRefPtr<Pattern… in __anon1e6151030402() variable
1259 tabContentModel.Create(deepRenderFunc);
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/grid/
H A Dgrid_layout_test_ng.cpp996 std::function<void(int32_t)> deepRenderFunc = [](int32_t innerNodeId) {}; in __anon80cf7a3e0402() variable
998 itemModel.Create(std::move(deepRenderFunc), isLazy, GridItemStyle::PLAIN);