Home
last modified time | relevance | path

Searched refs:composedComponent (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/common/
H A Delement_proxy.cpp64 SetComposedId(composedComponent ? composedComponent->GetId() : ""); in Update()
67 …while (composedComponent && !composedComponent->HasElementFunction() && !inspectorComposedComponen… in Update()
93 SetComposedId(composedComponent ? composedComponent->GetId() : ""); in UpdateForPartialUpdate()
96 …while (composedComponent && !composedComponent->HasElementFunction() && !inspectorComposedComponen… in UpdateForPartialUpdate()
406 SetComposedId(composedComponent ? composedComponent->GetId() : ""); in Update()
409 …while (composedComponent && !composedComponent->HasElementFunction() && !inspectorComposedComponen… in Update()
458 while (composedComponent && !composedComponent->HasElementFunction()) { in GetDeepRenderComponent()
497 SetComposedId(composedComponent ? composedComponent->GetId() : ""); in Update()
500 …while (composedComponent && !composedComponent->HasElementFunction() && !inspectorComposedComponen… in Update()
549 while (composedComponent && !composedComponent->HasElementFunction()) { in GetDeepRenderComponent()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/flex/
H A Dflex_component_v2.cpp45 auto composedComponent = AceType::DynamicCast<ComposedComponent>(component); in AddFlexItemComponent() local
46 if (composedComponent) { in AddFlexItemComponent()
47 auto composedChild = composedComponent->GetChild(); in AddFlexItemComponent()
55 composedComponent->SetChild(newComposedChild); in AddFlexItemComponent()
56 return composedComponent; in AddFlexItemComponent()
59 composedComponent->SetChild(nullptr); in AddFlexItemComponent()
62 composedComponent->SetChild(newFlexItem); in AddFlexItemComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/
H A Dview_full_update_model_impl.cpp31 auto composedComponent = AceType::MakeRefPtr<ComposedComponent>(key, "view"); in CreateNode() local
69 composedComponent->SetElementFunction(std::move(elementFunction)); in CreateNode()
72 composedComponent->SetStatic(); in CreateNode()
74 return composedComponent; in CreateNode()
H A Dview_partial_update_model_impl.cpp36 auto composedComponent = AceType::MakeRefPtr<ComposedComponent>(key, "view"); in CreateNode() local
37 composedComponent->SetElementId(reservedElementId); in CreateNode()
79 composedComponent->SetElementFunction(std::move(elementFunction)); in CreateNode()
82 composedComponent->SetStatic(); in CreateNode()
85 return composedComponent; in CreateNode()
H A Dnavigation_model_impl.cpp46 auto composedComponent = in SetCustomTitle() local
48 composedComponent->SetChild(customTile); in SetCustomTitle()
49 navigationContainer->GetDeclaration()->customTitle = composedComponent; in SetCustomTitle()
194 …auto composedComponent = ViewStackProcessor::GetInstance()->CreateInspectorWrapper("NavigationMenu… in SetCustomMenu() local
195 composedComponent->SetChild(customMenus); in SetCustomMenu()
196 navigationContainer->GetDeclaration()->customMenus = composedComponent; in SetCustomMenu()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/base/
H A Dcomposed_element.cpp73 auto composedComponent = AceType::DynamicCast<ComposedComponent>(component_); in PerformBuild() local
74 if (composedComponent) { in PerformBuild()
75 auto composedChild = composedComponent->GetChild(); in PerformBuild()
76 if (HasRenderFunction() && composedComponent->GetNeedReserveChild()) { in PerformBuild()
H A Dmulti_composed_element.cpp123 auto composedComponent = AceType::DynamicCast<BaseComposedComponent>(component); in UpdateChildrenForRebuild() local
124 if (!composedComponent) { in UpdateChildrenForRebuild()
130 auto it = elements.find(composedComponent->GetId()); in UpdateChildrenForRebuild()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/hyperlink/
H A Drender_hyperlink.cpp104 auto composedComponent = AceType::DynamicCast<ComposedComponent>(node); in SetImageChildColor() local
128 } else if (composedComponent) { in SetImageChildColor()
129 auto child = composedComponent->GetChild(); in SetImageChildColor()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/
H A Dview_stack_processor.cpp424 auto composedComponent = AceType::DynamicCast<ComposedComponent>(component); in Push() local
425 if (composedComponent) { in Push()
426 name = composedComponent->GetName(); in Push()
582 auto composedComponent = GetInspectorComposedComponent(); in WrapComponents() local
583 if (composedComponent) { in WrapComponents()
584 components.emplace_back(composedComponent); in WrapComponents()
860 auto composedComponent = AceType::MakeRefPtr<V2::InspectorComposedComponent>( in CreateInspectorComposedComponent() local
864 composedComponent->SetViewId(viewKey_); in CreateInspectorComposedComponent()
866 wrappingComponentsMap.emplace("inspector", composedComponent); in CreateInspectorComposedComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/
H A Djs_ace_page.cpp163 auto composedComponent = AceType::DynamicCast<ComposedComponent>(dirtyComponent); in BuildPagePatch() local
164 ACE_DCHECK(composedComponent); in BuildPagePatch()
165 return composedComponent; in BuildPagePatch()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/stack/
H A Dstack_element.cpp507 auto composedComponent = AceType::MakeRefPtr<V2::InspectorComposedComponent>( in CreateInspectorComponent() local
509 composedComponent->SetChild(componentInfo.component); in CreateInspectorComponent()
510 componentInfo.component = composedComponent; in CreateInspectorComponent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/video/
H A Dvideo_element.cpp1843 auto composedComponent = AceType::DynamicCast<ComposedComponent>(component); in OnStartBtnClick() local
1844 if (!composedComponent) { in OnStartBtnClick()
1848 if (composedComponent->IsInspector()) { in OnStartBtnClick()
1853 … AceType::MakeRefPtr<ComposedComponent>(composedComponent->GetId() + "fullscreen", in OnStartBtnClick()
1854composedComponent->GetName() + "fullscreen", composedComponent->GetChild())); in OnStartBtnClick()