/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/ |
H A D | grid_item_pattern.h | 35 …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 D | grid_item_model_ng.cpp | 53 …[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 D | navdestination_group_node.cpp | 140 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 D | navrouter_group_node.cpp | 165 auto shallowBuilder = navDestinationPattern->GetShallowBuilder(); in AddNavDestinationToNavigation() local 166 if (shallowBuilder && navRouteMode != NavRouteMode::PUSH) { in AddNavDestinationToNavigation() 167 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in AddNavDestinationToNavigation()
|
H A D | navdestination_pattern.h | 44 explicit NavDestinationPattern(const RefPtr<ShallowBuilder>& shallowBuilder);
|
H A D | navdestination_pattern.cpp | 97 NavDestinationPattern::NavDestinationPattern(const RefPtr<ShallowBuilder>& shallowBuilder) in NavDestinationPattern() argument 98 : shallowBuilder_(shallowBuilder) in NavDestinationPattern()
|
H A D | navdestination_model_ng.cpp | 351 [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 D | tab_content_pattern.h | 36 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 D | tab_content_model_ng.cpp | 67 [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 D | list_item_pattern.h | 46 …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 D | list_item_group_pattern.h | 75 const RefPtr<ShallowBuilder>& shallowBuilder, V2::ListItemGroupStyle listItemGroupStyle) in ListItemGroupPattern() argument 76 : shallowBuilder_(shallowBuilder), listItemGroupStyle_(listItemGroupStyle) in ListItemGroupPattern()
|
H A D | list_item_model_ng.cpp | 45 …[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 D | navrouter_pattern_test_ng.cpp | 317 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 D | navigation_group_node.cpp | 907 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 D | navigation_pattern.cpp | 2093 auto shallowBuilder = preDestinationPattern->GetShallowBuilder(); in OnCustomAnimationFinish() local 2094 if (shallowBuilder) { in OnCustomAnimationFinish() 2095 shallowBuilder->MarkIsExecuteDeepRenderDone(false); in OnCustomAnimationFinish()
|