Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/layout/
H A Dbox_layout_algorithm.cpp116 auto childFrame = SizeF(); in PerformMeasureSelfWithChildList() local
134 childFrame.SetSizeT(SizeF { maxWidth, maxHeight }); in PerformMeasureSelfWithChildList()
136 AddPaddingToSize(padding, childFrame); in PerformMeasureSelfWithChildList()
137 frameSize.UpdateIllegalSizeWithCheck(childFrame); in PerformMeasureSelfWithChildList()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/shape/
H A Dshape_container_layout_algorithm.cpp74 SizeF childFrame; in GetChildrenSize() local
112 childFrame.SetSizeT(SizeF { maxWidth, maxHeight }); in GetChildrenSize()
113 return childFrame; in GetChildrenSize()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/marquee/
H A Dmarquee_layout_algorithm.cpp69 auto childFrame = child->GetGeometryNode()->GetMarginFrameSize(); in Measure() local
70 frameSize.Constrain(SizeF { 0.0f, 0.0f }, SizeF { maxSize.Width(), childFrame.Height() }); in Measure()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/shape/
H A Dshape_pattern_test_ng.cpp391 auto childFrame = variable
393 EXPECT_TRUE(childFrame.IsNonNegative());
468 auto childFrame = shapeContainerLayoutAlgorithm->GetChildrenSize(&layoutWrapper, SizeF(0, 0)); variable
469 EXPECT_TRUE(childFrame.IsNonNegative());
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/badge/
H A Dbadge_layout_algorithm.cpp362 auto childFrame = in PerformMeasureSelf() local
364 AddPaddingToSize(padding, childFrame); in PerformMeasureSelf()
365 frameSize.UpdateIllegalSizeWithCheck(childFrame); in PerformMeasureSelf()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/
H A Dgrid_pattern.cpp901 auto childFrame = childFocus->GetFrameNode(); in SearchIrregularFocusableChild() local
902 if (!childFrame) { in SearchIrregularFocusableChild()
905 auto childPattern = childFrame->GetPattern<GridItemPattern>(); in SearchIrregularFocusableChild()
909 auto childItemProperty = childFrame->GetLayoutProperty<GridItemLayoutProperty>(); in SearchIrregularFocusableChild()
1085 auto childFrame = childFocus->GetFrameNode(); in GetChildFocusNodeByIndex() local
1086 if (!childFrame) { in GetChildFocusNodeByIndex()
1089 auto childPattern = childFrame->GetPattern(); in GetChildFocusNodeByIndex()
1141 auto childFrame = childFocus->GetFrameNode(); in GetFocusableChildCrossIndexesAt() local
1142 if (!childFrame) { in GetFocusableChildCrossIndexesAt()
1145 auto childPattern = childFrame->GetPattern(); in GetFocusableChildCrossIndexesAt()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scroll/
H A Dscroll_pattern.cpp746 OffsetF ScrollPattern::GetOffsetToScroll(const RefPtr<FrameNode>& childFrame) const in GetOffsetToScroll()
750 CHECK_NULL_RETURN(childFrame, OffsetF()); in GetOffsetToScroll()
751 auto childGeometryNode = childFrame->GetGeometryNode(); in GetOffsetToScroll()
754 auto parent = childFrame->GetParent(); in GetOffsetToScroll()
H A Dscroll_pattern.h410 OffsetF GetOffsetToScroll(const RefPtr<FrameNode>& childFrame) const;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/
H A Dlist_pattern.cpp1158 auto childFrame = childFocus->GetFrameNode(); in GetChildFocusNodeByIndex() local
1159 if (!childFrame) { in GetChildFocusNodeByIndex()
1162 auto childPattern = childFrame->GetPattern(); in GetChildFocusNodeByIndex()
2409 if (auto childFrame = childFocus->GetFrameNode()) { in IsListItemGroup() local
2410 … if (auto childPattern = AceType::DynamicCast<ListItemPattern>(childFrame->GetPattern())) { in IsListItemGroup()
2414 node = childFrame; in IsListItemGroup()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dfocus_hub.cpp2045 auto childFrame = child->GetFrameNode(); in GetChildFocusNodeByType() local
2046 if (!childFrame) { in GetChildFocusNodeByType()
2049 auto childFocusView = childFrame->GetPattern<FocusView>(); in GetChildFocusNodeByType()