Home
last modified time | relevance | path

Searched refs:targetElement (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/menu/
H A Dmenu_element.cpp136 auto targetElement = element; in GetBoxRenderChild() local
138 while (targetElement) { in GetBoxRenderChild()
139 auto boxElement = AceType::DynamicCast<BoxElement>(targetElement); in GetBoxRenderChild()
144 targetElement = targetElement->GetChildren().front(); in GetBoxRenderChild()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/popup/
H A Dpopup_element_v2.cpp60 auto targetElement = context->GetComposedElementById(id); in HandleDeclarativePerformBuild() local
61 if (!targetElement) { in HandleDeclarativePerformBuild()
65 auto targetRender = targetElement->GetRenderNode(); in HandleDeclarativePerformBuild()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/scroll/
H A Drender_scroll.cpp798 auto targetElement = context->GetComposedElementById(targetId); in AnimateToTarget() local
799 if (!targetElement) { in AnimateToTarget()
802 auto targetRender = targetElement->GetRenderNode(); in AnimateToTarget()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/bubble/
H A Drender_bubble.cpp322 auto targetElement = context->GetComposedElementById(targetId_); in InitTargetSizeAndPosition() local
323 if (!targetElement) { in InitTargetSizeAndPosition()
328 auto targetRender = targetElement->GetRenderNode(); in InitTargetSizeAndPosition()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/
H A Dpipeline_context.cpp2494 auto targetElement = GetComposedElementById(id); in AccessibilityRequestFocus() local
2495 if (!targetElement) { in AccessibilityRequestFocus()
2500 return RequestFocus(targetElement); in AccessibilityRequestFocus()
2503 bool PipelineContext::RequestFocus(const RefPtr<Element>& targetElement) in RequestFocus() argument
2506 if (!targetElement) { in RequestFocus()
2509 auto children = targetElement->GetChildren(); in RequestFocus()
H A Dpipeline_context.h362 bool RequestFocus(const RefPtr<Element>& targetElement);