/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/ |
H A D | grid_item_model_ng.cpp | 37 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 D | grid_item_model.h | 32 … std::function<void(int32_t)>&& deepRenderFunc, bool isLazy, NG::GridItemStyle gridItemStyle) = 0;
|
H A D | grid_item_model_ng.h | 28 …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 D | list_item_model_ng.cpp | 32 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 D | list_item_model.h | 37 …virtual void Create(std::function<void(int32_t)>&& deepRenderFunc, V2::ListItemStyle listItemStyle…
|
H A D | list_item_model_ng.h | 28 …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 D | shallow_builder.h | 35 …explicit ShallowBuilder(DeepRenderFunc&& deepRenderFunc) : deepRenderFunc_(std::move(deepRenderFun… in ShallowBuilder() argument
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/ |
H A D | grid_layout_item_component.h | 130 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 D | list_item_component.h | 107 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 D | grid_item_model_impl.cpp | 36 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 D | list_item_model_impl.cpp | 35 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 D | tab_content_model_impl.cpp | 59 void TabContentModelImpl::Create(std::function<void()>&& deepRenderFunc) in Create() argument 73 auto jsWrapperFunc = [builder = std::move(deepRenderFunc)]() -> RefPtr<Component> { in Create()
|
H A D | grid_item_model_impl.h | 27 …void Create(std::function<void(int32_t)>&& deepRenderFunc, bool isLazy, NG::GridItemStyle gridItem…
|
H A D | list_item_model_impl.h | 28 …void Create(std::function<void(int32_t)>&& deepRenderFunc, V2::ListItemStyle listItemStyle) overri…
|
H A D | tab_content_model_impl.h | 26 void Create(std::function<void()>&& deepRenderFunc) override;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/ |
H A D | tab_content_model_ng.cpp | 50 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 D | tab_content_model_ng.h | 36 void Create(std::function<void()>&& deepRenderFunc) override;
|
H A D | tab_content_model.h | 128 virtual void Create(std::function<void()>&& deepRenderFunc) = 0;
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/navrouter/ |
H A D | navrouter_pattern_test_ng.cpp | 300 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 D | navdestination_model_ng.cpp | 330 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 D | navdestination_model.h | 35 … std::function<void()>&& deepRenderFunc, RefPtr<NG::NavDestinationContext> context = nullptr) = 0;
|
H A D | navdestination_model_ng.h | 26 …void Create(std::function<void()>&& deepRenderFunc, RefPtr<NG::NavDestinationContext> context = nu…
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/tabs/ |
H A D | tabs_attr_test_ng.cpp | 1258 …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 D | grid_layout_test_ng.cpp | 996 std::function<void(int32_t)> deepRenderFunc = [](int32_t innerNodeId) {}; in __anon80cf7a3e0402() variable 998 itemModel.Create(std::move(deepRenderFunc), isLazy, GridItemStyle::PLAIN);
|