Home
last modified time | relevance | path

Searched refs:uiNode (Results 1 - 25 of 90) sorted by relevance

1234

/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/
H A Dspan_model_ng.h57 static void InitSpan(UINode* uiNode, const std::string& content);
58 static void SetFontWeight(UINode* uiNode, FontWeight value);
59 static void ResetFontWeight(UINode* uiNode);
60 static void SetTextCase(UINode* uiNode, TextCase value);
61 static void ResetTextCase(UINode* uiNode);
62 static void SetItalicFontStyle(UINode* uiNode, Ace::FontStyle value);
63 static void ResetItalicFontStyle(UINode* uiNode);
64 static void SetLineHeight(UINode* uiNode, const Dimension& value);
65 static void ResetLineHeight(UINode* uiNode);
66 static void SetFontSize(UINode* uiNode, cons
[all...]
H A Dspan_model_ng.cpp177 void SpanModelNG::SetTextShadow(UINode* uiNode, const std::vector<Shadow>& value) in SetTextShadow() argument
179 ACE_UPDATE_NODE_SPAN_PROPERTY(TextShadow, value, uiNode); in SetTextShadow()
182 void SpanModelNG::ResetTextShadow(UINode *uiNode) in ResetTextShadow() argument
184 ACE_RESET_NODE_SPAN_PROPERTY(TextShadow, uiNode); in ResetTextShadow()
208 void SpanModelNG::SetOnClick(UINode* uiNode, GestureEventFunc&& click) in SetOnClick() argument
210 ACE_UPDATE_NODE_SPAN_PROPERTY(OnClickEvent, std::move(click), uiNode); in SetOnClick()
218 void SpanModelNG::ClearOnClick(UINode* uiNode) in ClearOnClick() argument
220 ACE_UPDATE_NODE_SPAN_PROPERTY(OnClickEvent, nullptr, uiNode); in ClearOnClick()
253 void SpanModelNG::InitSpan(UINode* uiNode, const std::string& content) in InitSpan() argument
255 ACE_UPDATE_NODE_SPAN_PROPERTY(Content, content, uiNode); in InitSpan()
258 SetFontWeight(UINode* uiNode, FontWeight value) SetFontWeight() argument
265 ResetFontWeight(UINode *uiNode) ResetFontWeight() argument
270 SetTextCase(UINode* uiNode, TextCase value) SetTextCase() argument
277 ResetTextCase(UINode *uiNode) ResetTextCase() argument
282 SetItalicFontStyle(UINode* uiNode, Ace::FontStyle value) SetItalicFontStyle() argument
289 ResetItalicFontStyle(UINode *uiNode) ResetItalicFontStyle() argument
294 SetLineHeight(UINode* uiNode, const Dimension& value) SetLineHeight() argument
301 ResetLineHeight(UINode* uiNode) ResetLineHeight() argument
306 SetFontSize(UINode* uiNode, const Dimension& value) SetFontSize() argument
313 ResetFontSize(UINode *uiNode) ResetFontSize() argument
318 SetFontFamily(UINode* uiNode, const std::vector<std::string>& value) SetFontFamily() argument
325 ResetFontFamily(UINode *uiNode) ResetFontFamily() argument
330 SetTextDecoration(UINode* uiNode, TextDecoration value) SetTextDecoration() argument
337 ResetTextDecoration(UINode *uiNode) ResetTextDecoration() argument
342 SetTextDecorationStyle(UINode* uiNode, TextDecorationStyle value) SetTextDecorationStyle() argument
349 ResetTextDecorationStyle(UINode *uiNode) ResetTextDecorationStyle() argument
354 SetTextDecorationColor(UINode* uiNode, const Color& value) SetTextDecorationColor() argument
361 ResetTextDecorationColor(UINode *uiNode) ResetTextDecorationColor() argument
366 SetTextColor(UINode* uiNode, const Color& value) SetTextColor() argument
373 ResetTextColor(UINode *uiNode) ResetTextColor() argument
378 SetLetterSpacing(UINode* uiNode, const Dimension& value) SetLetterSpacing() argument
385 ResetLetterSpacing(UINode *uiNode) ResetLetterSpacing() argument
390 SetBaselineOffset(UINode* uiNode, const Dimension& value) SetBaselineOffset() argument
397 SetFont(UINode* uiNode, const Font& value) SetFont() argument
421 ResetFont(UINode *uiNode) ResetFont() argument
444 SetTextBackgroundStyle(UINode* uiNode, const TextBackgroundStyle& style) SetTextBackgroundStyle() argument
451 SetTextBackgroundStyleByBaseSpan(UINode* uiNode, const TextBackgroundStyle& style) SetTextBackgroundStyleByBaseSpan() argument
458 GetContent(UINode* uiNode) GetContent() argument
467 GetTextDecoration(UINode* uiNode) GetTextDecoration() argument
474 GetTextDecorationColor(UINode* uiNode) GetTextDecorationColor() argument
481 GetTextDecorationStyle(UINode* uiNode) GetTextDecorationStyle() argument
498 GetFontColor(UINode* uiNode) GetFontColor() argument
506 GetFontSize(UINode* uiNode) GetFontSize() argument
514 GetFontStyle(UINode* uiNode) GetFontStyle() argument
521 GetFontWeight(UINode* uiNode) GetFontWeight() argument
528 GetTextLineHeight(UINode* uiNode) GetTextLineHeight() argument
536 GetTextCase(UINode* uiNode) GetTextCase() argument
543 GetLetterSpacing(UINode* uiNode) GetLetterSpacing() argument
551 GetBaselineOffset(UINode* uiNode) GetBaselineOffset() argument
559 GetSpanTextBackgroundStyle(UINode* uiNode) GetSpanTextBackgroundStyle() argument
567 GetTextShadow(UINode* uiNode) GetTextShadow() argument
576 SetAccessibilityText(UINode* uiNode, const std::string& text) SetAccessibilityText() argument
586 SetAccessibilityDescription(UINode* uiNode, const std::string& description) SetAccessibilityDescription() argument
596 SetAccessibilityImportance(UINode* uiNode, const std::string& importance) SetAccessibilityImportance() argument
606 GetSpanFontFamily(UINode* uiNode) GetSpanFontFamily() argument
[all...]
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_span_modifier.cpp38 auto* uiNode = reinterpret_cast<UINode*>(node); in SetSpanContent() local
39 CHECK_NULL_VOID(uiNode); in SetSpanContent()
41 SpanModelNG::InitSpan(uiNode, content); in SetSpanContent()
46 auto* uiNode = reinterpret_cast<UINode*>(node); in GetSpanContent() local
47 CHECK_NULL_RETURN(uiNode, nullptr); in GetSpanContent()
48 g_strValue = SpanModelNG::GetContent(uiNode); in GetSpanContent()
54 auto* uiNode = reinterpret_cast<UINode*>(node); in SetSpanSrc() local
55 CHECK_NULL_VOID(uiNode); in SetSpanSrc()
56 SpanModelNG::InitSpan(uiNode, src); in SetSpanSrc()
61 auto* uiNode in SetSpanTextCase() local
69 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanTextCase() local
76 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanTextCase() local
83 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanFontWeightStr() local
90 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanFontWeight() local
98 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanFontWeight() local
105 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanFontWeight() local
112 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanLineHeight() local
119 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanLineHeight() local
126 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanLineHeight() local
133 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanFontStyle() local
141 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanFontStyle() local
148 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanFontStyle() local
155 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanFontSize() local
162 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanFontSize() local
169 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanFontSize() local
180 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanFontFamily() local
194 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanFontFamily() local
201 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanDecoration() local
211 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanDecoration() local
220 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanDecoration() local
229 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanFontColor() local
236 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanFontColor() local
243 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanFontColor() local
250 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanLetterSpacing() local
263 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanLetterSpacing() local
270 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanLetterSpacing() local
277 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanBaselineOffset() local
284 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanBaselineOffset() local
291 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanBaselineOffset() local
299 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanFont() local
318 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanFont() local
326 auto* uiNode = reinterpret_cast<UINode*>(node); SetSpanTextBackgroundStyle() local
345 auto* uiNode = reinterpret_cast<UINode*>(node); ResetSpanTextBackgroundStyle() local
361 auto* uiNode = reinterpret_cast<UINode*>(node); GetSpanTextBackgroundStyle() local
[all...]
H A Dnode_container_span_modifier.cpp30 auto* uiNode = reinterpret_cast<UINode*>(node); in SetContainerSpanTextBackgroundStyle() local
31 CHECK_NULL_VOID(uiNode); in SetContainerSpanTextBackgroundStyle()
44 SpanModelNG::SetTextBackgroundStyleByBaseSpan(uiNode, font); in SetContainerSpanTextBackgroundStyle()
49 auto* uiNode = reinterpret_cast<UINode*>(node); in ResetContainerSpanTextBackgroundStyle() local
50 CHECK_NULL_VOID(uiNode); in ResetContainerSpanTextBackgroundStyle()
60 SpanModelNG::SetTextBackgroundStyleByBaseSpan(uiNode, font); in ResetContainerSpanTextBackgroundStyle()
H A Dnode_content_modifier.cpp28 auto* uiNode = reinterpret_cast<UINode*>(child); in AddChild() local
29 nodeContent->AddNode(uiNode); in AddChild()
38 auto* uiNode = reinterpret_cast<UINode*>(child); in InsertChild() local
39 nodeContent->AddNode(uiNode, position); in InsertChild()
48 auto* uiNode = reinterpret_cast<UINode*>(child); in RemoveChild() local
49 nodeContent->RemoveNode(uiNode); in RemoveChild()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_item_accessibility_property.cpp39 auto uiNode = DynamicCast<UINode>(frameNode); in GetCollectionItemInfo() local
40 CHECK_NULL_RETURN(uiNode, aceCollectionItemInfo); in GetCollectionItemInfo()
41 while (uiNode->GetTag() != V2::GRID_ETS_TAG) { in GetCollectionItemInfo()
42 uiNode = uiNode->GetParent(); in GetCollectionItemInfo()
43 CHECK_NULL_RETURN(uiNode, aceCollectionItemInfo); in GetCollectionItemInfo()
45 auto gridNode = DynamicCast<FrameNode>(uiNode); in GetCollectionItemInfo()
H A Dgrid_item_layout_property.cpp26 auto uiNode = DynamicCast<UINode>(host); in ResetGridLayoutInfoAndMeasure() local
27 while (uiNode->GetTag() != V2::GRID_ETS_TAG) { in ResetGridLayoutInfoAndMeasure()
28 uiNode = uiNode->GetParent(); in ResetGridLayoutInfoAndMeasure()
29 CHECK_NULL_VOID(uiNode); in ResetGridLayoutInfoAndMeasure()
31 auto grid = DynamicCast<FrameNode>(uiNode); in ResetGridLayoutInfoAndMeasure()
/foundation/arkui/ace_engine/frameworks/core/components_ng/syntax/
H A Dlazy_layout_wrapper_builder.cpp63 RefPtr<UINode> uiNode; in GetOrCreateFrameNode() local
71 uiNode = builder_->GetChildByKey(id); in GetOrCreateFrameNode()
74 if (!uiNode) { in GetOrCreateFrameNode()
87 uiNode = itemInfo.second; in GetOrCreateFrameNode()
89 return std::pair(uiNode, id); in GetOrCreateFrameNode()
114 RefPtr<UINode> uiNode = pair.first; in OnGetOrCreateWrapperByIndexLegacy() local
116 CHECK_NULL_RETURN(uiNode, nullptr); in OnGetOrCreateWrapperByIndexLegacy()
118 auto frameNode = DynamicCast<FrameNode>(uiNode); in OnGetOrCreateWrapperByIndexLegacy()
122 wrapper = uiNode->CreateLayoutWrapper(forceMeasure_, forceLayout_); in OnGetOrCreateWrapperByIndexLegacy()
161 auto uiNode in OnExpandChildLayoutWrapper() local
[all...]
H A Dlazy_for_each_builder.h324 auto uiNode = CacheItem(index, cache, itemConstraint, deadline, isTimeout); in PreBuildByIndex() local
332 if (canRunLongPredictTask && uiNode && itemConstraint) { in PreBuildByIndex()
333 RefPtr<FrameNode> frameNode = DynamicCast<FrameNode>(uiNode); in PreBuildByIndex()
335 auto tempNode = uiNode; in PreBuildByIndex()
336 uiNode = tempNode->GetFirstChild(); in PreBuildByIndex()
337 if (!uiNode) { in PreBuildByIndex()
340 frameNode = DynamicCast<FrameNode>(uiNode); in PreBuildByIndex()
412 void ProcessOffscreenNode(RefPtr<UINode> uiNode, bool remove) in ProcessOffscreenNode() argument
414 if (uiNode) { in ProcessOffscreenNode()
415 auto frameNode = DynamicCast<FrameNode>(uiNode); in ProcessOffscreenNode()
[all...]
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/custom/
H A Dcustom_node_pattern.cpp29 auto uiNode = customNodeLayoutAlgorithm->MoveBuildItem(); in OnDirtyLayoutWrapperSwap() local
30 CHECK_NULL_RETURN(uiNode, false); in OnDirtyLayoutWrapperSwap()
31 uiNode->MountToParent(host); in OnDirtyLayoutWrapperSwap()
H A Dcustom_node_base.cpp62 auto uiNode = AceType::DynamicCast<UINode>(Claim(this)); in FireRecycleSelf() local
63 uiNode->OnRecycle(); in FireRecycleSelf()
65 recycleInfo_.Recycle(uiNode->GetId()); in FireRecycleSelf()
66 RecycleManager::Push(uiNode->GetId(), AceType::WeakClaim(this)); in FireRecycleSelf()
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/
H A Dinspector.cpp100 void GetFrameNodeChildren(const RefPtr<NG::UINode>& uiNode, std::vector<RefPtr<NG::UINode>>& children, int32_t pageId, in GetFrameNodeChildren() argument
104 auto parent = uiNode->GetParent(); in GetFrameNodeChildren()
106 uiNode->SetViewId(std::to_string(parent->GetId())); in GetFrameNodeChildren()
108 uiNode->SetViewId(parent->GetViewId()); in GetFrameNodeChildren()
110 if (uiNode->GetTag() == "stage") { in GetFrameNodeChildren()
111 } else if (uiNode->GetTag() == "page") { in GetFrameNodeChildren()
112 if (uiNode->GetPageId() != pageId) { in GetFrameNodeChildren()
116 if (!uiNode->GetDebugLine().empty()) { in GetFrameNodeChildren()
117 children.emplace_back(uiNode); in GetFrameNodeChildren()
122 for (const auto& frameChild : uiNode in GetFrameNodeChildren()
232 GetFrameNodeChildren(const RefPtr<NG::UINode>& uiNode, std::vector<RefPtr<NG::UINode>>& children, int32_t pageId, bool isLayoutInspector = false) GetFrameNodeChildren() argument
875 AddInspectorTreeNode(const RefPtr<NG::UINode>& uiNode, InspectorTreeMap& recNodes) AddInspectorTreeNode() argument
[all...]
H A Ddistributed_ui.cpp75 for (const auto& uiNode : children) { in DumpUITree()
76 DumpTreeInner(uiNode, objectArray, 1); in DumpUITree()
443 for (const auto& uiNode : children) { in DumpTreeInner()
444 DumpTreeInner(uiNode, objectArray, depth + 1); in DumpTreeInner()
563 RefPtr<UINode> uiNode = nullptr; in RestoreNode()
565 uiNode = nodeCreate.at(type)(attrs->GetString("viewKey"), sinkNodeId); in RestoreNode()
567 uiNode = nodeCreate.at(type)(attrs->GetString("key"), sinkNodeId); in RestoreNode()
569 uiNode = nodeCreate.at(type)(type, sinkNodeId); in RestoreNode()
571 if (!uiNode) { in RestoreNode()
575 SetIdMapping(srcNodeId, uiNode in RestoreNode()
[all...]
H A Dview_full_update_model_ng.cpp36 auto uiNode = internalRender(); in CreateNode()
37 return AceType::DynamicCast<UINode>(uiNode); in CreateNode()
H A Dview_stack_processor.cpp40 auto uiNode = GetMainElementNode(); in GetMainFrameNode() local
41 if (!uiNode || !uiNode->IsLayoutSeperately()) { in GetMainFrameNode()
44 return static_cast<FrameNode*>(Referenced::RawPtr(uiNode)); in GetMainFrameNode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navrouter/
H A Dnavrouter_group_node.cpp146 RefPtr<UINode> uiNode = navigationStack->GetFromCacheNode(name); in AddNavDestinationToNavigation() local
147 if (uiNode == nullptr) { in AddNavDestinationToNavigation()
148 uiNode = navigationStack->CreateNodeByRouteInfo(routeInfo, navigationPattern->GetParentCustomNode()); in AddNavDestinationToNavigation()
151 navigationPattern->AddNavDestinationNode(name, uiNode, navRouteMode, routeInfo); in AddNavDestinationToNavigation()
154 if (uiNode) { in AddNavDestinationToNavigation()
155 navigationPattern->AddOnStateChangeItem(uiNode->GetId(), navRouterEventHub->GetOnStateChange()); in AddNavDestinationToNavigation()
158 NavigationGroupNode::GetNavDestinationNode(uiNode)); in AddNavDestinationToNavigation()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dinner_navigation_controller.cpp70 const auto& uiNode = childNode.second; in SetInPIPMode() local
71 if (uiNode && uiNode->GetId() == handle) { in SetInPIPMode()
73 NG::NavigationGroupNode::GetNavDestinationNode(uiNode)); in SetInPIPMode()
79 navigationStack->AddCacheNode(childNode.first, uiNode); in SetInPIPMode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/post_event/
H A Dpost_event_manager.cpp22 bool PostEventManager::PostEvent(const RefPtr<NG::UINode>& uiNode, TouchEvent& touchEvent) in PostEvent() argument
29 CHECK_NULL_RETURN(uiNode, false); in PostEvent()
30 touchEvent.postEventNodeId = uiNode->GetId(); in PostEvent()
34 result = PostDownEvent(uiNode, touchEvent); in PostEvent()
37 result = PostMoveEvent(uiNode, touchEvent); in PostEvent()
41 result = PostUpEvent(uiNode, touchEvent); in PostEvent()
/foundation/arkui/ace_engine/test/mock/core/pipeline/
H A Dmock_element_register.cpp209 auto uiNode = node.Upgrade(); in GetAttachedFrameNodeById() local
210 if (!uiNode) { in GetAttachedFrameNodeById()
213 auto depOfNode = uiNode->GetDepth(); in GetAttachedFrameNodeById()
214 if (uiNode->IsOnMainTree() && uiNode->GetInspectorId().value_or("") == key && depth > depOfNode) { in GetAttachedFrameNodeById()
216 frameNode = uiNode; in GetAttachedFrameNodeById()
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dtarget_component.cpp21 void TargetComponent::SetNode(const WeakPtr<UINode>& uiNode) in SetNode() argument
23 node_ = uiNode; in SetNode()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/recycle_view/
H A Drecycle_dummy_node.cpp30 auto uiNode = AceType::DynamicCast<UINode>(customNode); in WrapRecycleDummyNode() local
31 node->AddChild(uiNode); in WrapRecycleDummyNode()
/foundation/arkui/ace_engine/frameworks/core/common/
H A Dfont_manager.cpp242 auto uiNode = DynamicCast<NG::UINode>(fontNode); in RebuildFontNode()
243 if (uiNode) { in RebuildFontNode()
244 uiNode->MarkDirtyNode(NG::PROPERTY_UPDATE_LAYOUT); in RebuildFontNode()
265 auto uiNode = DynamicCast<NG::UINode>(fontNode); in RebuildFontNodeNG() local
266 if (uiNode) { in RebuildFontNodeNG()
267 uiNode->MarkDirtyNode(NG::PROPERTY_UPDATE_MEASURE); in RebuildFontNodeNG()
322 auto uiNode = node.Upgrade(); in NotifyVariationNodes()
323 CHECK_NULL_VOID(uiNode); in NotifyVariationNodes()
324 auto frameNode = DynamicCast<NG::FrameNode>(uiNode); in NotifyVariationNodes()
328 uiNode in NotifyVariationNodes()
[all...]
/foundation/arkui/ace_engine/interfaces/napi/kits/overlay/
H A Djs_overlay.cpp34 NG::UINode* uiNode = nullptr; in ParseFrameNode() local
36 NAPI_CALL(env, napi_get_value_external(env, nodePtr, (void**)&uiNode)); in ParseFrameNode()
38 CHECK_NULL_RETURN(uiNode, nullptr); in ParseFrameNode()
39 return reinterpret_cast<NG::FrameNode*>(uiNode); in ParseFrameNode()
/foundation/arkui/ace_engine/test/unittest/core/pattern/shape/
H A Dshape_pattern_test_ng.cpp86 RefPtr<UINode> uiNode = ViewStackProcessor::GetInstance()->Finish(); in HWTEST_F() local
87 RefPtr<FrameNode> frameNode = AceType::DynamicCast<FrameNode>(uiNode); in HWTEST_F()
153 RefPtr<UINode> uiNode = ViewStackProcessor::GetInstance()->Finish(); in HWTEST_F() local
154 RefPtr<FrameNode> frameNode = AceType::DynamicCast<FrameNode>(uiNode); in HWTEST_F()
257 RefPtr<UINode> uiNode = ViewStackProcessor::GetInstance()->Finish(); in HWTEST_F() local
258 RefPtr<FrameNode> frameNode = AceType::DynamicCast<FrameNode>(uiNode); in HWTEST_F()
291 RefPtr<UINode> uiNode = ViewStackProcessor::GetInstance()->Finish(); in HWTEST_F() local
292 RefPtr<FrameNode> frameNode = AceType::DynamicCast<FrameNode>(uiNode); in HWTEST_F()
327 RefPtr<UINode> uiNode = ViewStackProcessor::GetInstance()->Finish(); in HWTEST_F() local
328 RefPtr<FrameNode> frameNode = AceType::DynamicCast<FrameNode>(uiNode); in HWTEST_F()
379 RefPtr<UINode> uiNode = ViewStackProcessor::GetInstance()->Finish(); HWTEST_F() local
[all...]
/foundation/arkui/ace_engine/frameworks/core/pipeline/base/
H A Delement_register.cpp235 auto uiNode = node.Upgrade(); in GetAttachedFrameNodeById() local
236 if (!uiNode) { in GetAttachedFrameNodeById()
239 auto depOfNode = uiNode->GetDepth(); in GetAttachedFrameNodeById()
240 if (uiNode->IsOnMainTree() && uiNode->GetInspectorId().value_or("") == key && depth > depOfNode) { in GetAttachedFrameNodeById()
242 frameNode = uiNode; in GetAttachedFrameNodeById()

Completed in 13 milliseconds

1234