Home
last modified time | relevance | path

Searched refs:curFrameNode (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/shape/
H A Dshape_pattern.h72 auto curFrameNode = GetHost(); in GetAncestorPaintProperty() local
73 CHECK_NULL_RETURN(curFrameNode, nullptr); in GetAncestorPaintProperty()
74 auto childNode = curFrameNode; in GetAncestorPaintProperty()
76 … auto parentFrameNode = AceType::DynamicCast<FrameNode>(curFrameNode->GetAncestorNodeOfFrame()); in GetAncestorPaintProperty()
87 curFrameNode = parentFrameNode; in GetAncestorPaintProperty()
88 … parentFrameNode = AceType::DynamicCast<FrameNode>(curFrameNode->GetAncestorNodeOfFrame()); in GetAncestorPaintProperty()
H A Dshape_container_pattern.cpp36 auto curFrameNode = GetHost(); in ViewPortTransform() local
37 auto renderContext = curFrameNode->GetRenderContext(); in ViewPortTransform()
38 auto geoNode = curFrameNode->GetGeometryNode(); in ViewPortTransform()
41 auto paintProperty = curFrameNode->GetPaintProperty<ShapeContainerPaintProperty>(); in ViewPortTransform()
51 for (const auto& child : curFrameNode->GetChildren()) { in ViewPortTransform()
H A Dshape_container_layout_algorithm.cpp28 auto curFrameNode = layoutWrapper->GetHostNode(); in MeasureContent() local
29 CHECK_NULL_RETURN(curFrameNode, std::nullopt); in MeasureContent()
30 auto paintProperty = curFrameNode->GetPaintProperty<ShapeContainerPaintProperty>(); in MeasureContent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scrollable/
H A Dscrollable_utils.cpp156 const RefPtr<FrameNode>& curFrameNode, in GetMoveOffset() argument
163 CHECK_NULL_RETURN(curFrameNode, notMove); in GetMoveOffset()
167 auto curFrameOffsetToWindow = curFrameNode->GetTransformRelativeOffset(); in GetMoveOffset()
170 auto curGeometry = curFrameNode->GetGeometryNode(); in GetMoveOffset()
176curFrameNode->GetTag().c_str(), curFrameNode->GetId(), curFrameOffsetToWindow.ToString().c_str(), in GetMoveOffset()
H A Dscrollable_utils.h55 const RefPtr<FrameNode>& curFrameNode,
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar/
H A Dcalendar_pattern.cpp294 …lendarPattern::JumpTo(const RefPtr<FrameNode>& preFrameNode, const RefPtr<FrameNode>& curFrameNode, in JumpTo() argument
299 auto currentPattern = curFrameNode->GetPattern<CalendarMonthPattern>(); in JumpTo()
318 curFrameNode->MarkModifyDone(); in JumpTo()
319 curFrameNode->MarkDirtyNode(PROPERTY_UPDATE_RENDER); in JumpTo()
333 curFrameNode->MarkModifyDone(); in JumpTo()
334 curFrameNode->MarkDirtyNode(PROPERTY_UPDATE_RENDER); in JumpTo()
348 curFrameNode->MarkModifyDone(); in JumpTo()
349 curFrameNode->MarkDirtyNode(PROPERTY_UPDATE_RENDER); in JumpTo()
H A Dcalendar_pattern.h167 void JumpTo(const RefPtr<FrameNode>& preFrameNode, const RefPtr<FrameNode>& curFrameNode,
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.cpp1117 auto curFrameNode = GetFrameNode(); in FocusToHeadOrTailChild() local
1118 auto curPattern = curFrameNode ? curFrameNode->GetPattern<ScrollablePattern>() : nullptr; in FocusToHeadOrTailChild()
2133 auto curFrameNode = GetFrameNode(); in ScrollByOffsetToParent() local
2134 CHECK_NULL_RETURN(curFrameNode, false); in ScrollByOffsetToParent()
2145 …auto moveOffset = ScrollableUtils::GetMoveOffset(parentFrameNode, curFrameNode, scrollAxis == Axis… in ScrollByOffsetToParent()
2311 auto curFrameNode = GetFrameNode(); in GetNearestNodeByProjectArea() local
2312 CHECK_NULL_RETURN(curFrameNode, nullptr); in GetNearestNodeByProjectArea()
2313 auto curFrameOffset = curFrameNode->GetTransformRelativeOffset(); in GetNearestNodeByProjectArea()
2314 auto curGeometryNode = curFrameNode->GetGeometryNode(); in GetNearestNodeByProjectArea()
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/osal/
H A Djs_accessibility_manager.cpp1262 bool ScrollByOffsetToParent(const RefPtr<NG::FrameNode>& curFrameNode, const RefPtr<NG::FrameNode>&… in ScrollByOffsetToParent() argument
1264 CHECK_NULL_RETURN(curFrameNode, false); in ScrollByOffsetToParent()
1275 …auto moveOffset = NG::ScrollableUtils::GetMoveOffset(parentFrameNode, curFrameNode, scrollAxis == … in ScrollByOffsetToParent()
1290 bool ScrollByOffset(const RefPtr<NG::FrameNode>& curFrameNode) in ScrollByOffset() argument
1292 CHECK_NULL_RETURN(curFrameNode, false); in ScrollByOffset()
1294 auto parentFrameNode = curFrameNode->GetParentFrameNode(); in ScrollByOffset()
1297 if (ScrollByOffsetToParent(curFrameNode, parentFrameNode)) { in ScrollByOffset()
1305 void ProcessFocusScroll(const RefPtr<NG::FrameNode>& curFrameNode, RefPtr<NG::PipelineContext>& con… in ProcessFocusScroll() argument
1309 [node = AceType::WeakClaim(AceType::RawPtr(curFrameNode))] { in ProcessFocusScroll()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/
H A Dpipeline_context.cpp3211 RefPtr<FrameNode> curFrameNode = focusHub ? focusHub->GetFrameNode() : nullptr; in IsSkipShortcutAndFocusMove() local
3212 return EventManager::IsSkipEventNode(curFrameNode); in IsSkipShortcutAndFocusMove()