Home
last modified time | relevance | path

Searched refs:shallowBuilder (Results 1 – 15 of 15) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_item_pattern.h35 …licit GridItemPattern(const RefPtr<ShallowBuilder>& shallowBuilder) : shallowBuilder_(shallowBuild… in GridItemPattern() argument
36 …explicit GridItemPattern(const RefPtr<ShallowBuilder>& shallowBuilder, GridItemStyle gridItemStyle) in GridItemPattern() argument
37 : shallowBuilder_(shallowBuilder), gridItemStyle_(gridItemStyle) in GridItemPattern()
H A Dgrid_item_model_ng.cpp53 …[shallowBuilder = AceType::MakeRefPtr<ShallowBuilder>(std::move(deepRender)), itemStyle = gridItem… in Create()
54 return AceType::MakeRefPtr<GridItemPattern>(shallowBuilder, itemStyle); in Create()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navrouter/
H A Dnavdestination_group_node.cpp140 auto shallowBuilder = navDestinationPattern->GetShallowBuilder(); in ProcessShallowBuilder() local
141 if (shallowBuilder && !shallowBuilder->IsExecuteDeepRenderDone()) { in ProcessShallowBuilder()
147 shallowBuilder->ExecuteDeepRender(); in ProcessShallowBuilder()
362 auto shallowBuilder = preNavDesPattern->GetShallowBuilder(); in SystemTransitionPopCallback() local
363 if (shallowBuilder && !IsCacheNode()) { in SystemTransitionPopCallback()
364 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in SystemTransitionPopCallback()
506 auto shallowBuilder = pattern->GetShallowBuilder(); in CleanContent() local
507 if (shallowBuilder) { in CleanContent()
508 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in CleanContent()
H A Dnavrouter_group_node.cpp165 auto shallowBuilder = navDestinationPattern->GetShallowBuilder(); in AddNavDestinationToNavigation() local
166 if (shallowBuilder && navRouteMode != NavRouteMode::PUSH) { in AddNavDestinationToNavigation()
167 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in AddNavDestinationToNavigation()
H A Dnavdestination_pattern.h44 explicit NavDestinationPattern(const RefPtr<ShallowBuilder>& shallowBuilder);
H A Dnavdestination_pattern.cpp97 NavDestinationPattern::NavDestinationPattern(const RefPtr<ShallowBuilder>& shallowBuilder) in NavDestinationPattern() argument
98 : shallowBuilder_(shallowBuilder) in NavDestinationPattern()
H A Dnavdestination_model_ng.cpp351 [shallowBuilder = AceType::MakeRefPtr<ShallowBuilder>(std::move(deepRender)), context]() { in Create()
352 auto pattern = AceType::MakeRefPtr<NavDestinationPattern>(shallowBuilder); in Create()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/tabs/
H A Dtab_content_pattern.h36 explicit TabContentPattern(const RefPtr<ShallowBuilder>& shallowBuilder) in TabContentPattern() argument
37 : shallowBuilder_(shallowBuilder), tabBarParam_(std::string(""), std::string(""), nullptr) in TabContentPattern()
145 … pipeline->AddAfterRenderTask([weak = WeakClaim(this), shallowBuilder = shallowBuilder_]() { in BeforeCreateLayoutWrapper()
146 CHECK_NULL_VOID(shallowBuilder); in BeforeCreateLayoutWrapper()
147 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in BeforeCreateLayoutWrapper()
H A Dtab_content_model_ng.cpp67 [shallowBuilder = AceType::MakeRefPtr<ShallowBuilder>(std::move(deepRender))]() { in Create()
68 return AceType::MakeRefPtr<TabContentPattern>(shallowBuilder); in Create()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_item_pattern.h46 …licit ListItemPattern(const RefPtr<ShallowBuilder>& shallowBuilder) : shallowBuilder_(shallowBuild… in ListItemPattern() argument
47 …explicit ListItemPattern(const RefPtr<ShallowBuilder>& shallowBuilder, V2::ListItemStyle listItemS… in ListItemPattern() argument
48 : shallowBuilder_(shallowBuilder), listItemStyle_(listItemStyle) in ListItemPattern()
H A Dlist_item_group_pattern.h75 const RefPtr<ShallowBuilder>& shallowBuilder, V2::ListItemGroupStyle listItemGroupStyle) in ListItemGroupPattern() argument
76 : shallowBuilder_(shallowBuilder), listItemGroupStyle_(listItemGroupStyle) in ListItemGroupPattern()
H A Dlist_item_model_ng.cpp45 …[shallowBuilder = AceType::MakeRefPtr<ShallowBuilder>(std::move(deepRender)), itemStyle = listItem… in Create()
46 return AceType::MakeRefPtr<ListItemPattern>(shallowBuilder, itemStyle); in Create()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/navrouter/
H A Dnavrouter_pattern_test_ng.cpp317 auto shallowBuilder = navDestinationPattern->GetShallowBuilder(); variable
318 ASSERT_NE(shallowBuilder, nullptr);
319 EXPECT_FALSE(shallowBuilder->IsExecuteDeepRenderDone());
320 shallowBuilder->ExecuteDeepRender();
353 auto shallowBuilder = navDestinationPattern->GetShallowBuilder(); variable
354 ASSERT_NE(shallowBuilder, nullptr);
355 EXPECT_FALSE(shallowBuilder->IsExecuteDeepRenderDone());
356 shallowBuilder->ExecuteDeepRender();
388 ASSERT_NE(shallowBuilder, nullptr);
389 EXPECT_FALSE(shallowBuilder->IsExecuteDeepRenderDone());
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_group_node.cpp907 auto shallowBuilder = navDestinationPattern->GetShallowBuilder(); in DealNavigationExit() local
908 if (shallowBuilder) { in DealNavigationExit()
909 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in DealNavigationExit()
1170 auto shallowBuilder = navDestinationPattern->GetShallowBuilder(); in RemoveDialogDestination() local
1171 if (shallowBuilder) { in RemoveDialogDestination()
1172 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in RemoveDialogDestination()
1193 auto shallowBuilder = navDestinationPattern->GetShallowBuilder(); in DealRemoveDestination() local
1194 if (shallowBuilder) { in DealRemoveDestination()
1195 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in DealRemoveDestination()
H A Dnavigation_pattern.cpp2093 auto shallowBuilder = preDestinationPattern->GetShallowBuilder(); in OnCustomAnimationFinish() local
2094 if (shallowBuilder) { in OnCustomAnimationFinish()
2095 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in OnCustomAnimationFinish()