Home
last modified time | relevance | path

Searched refs:childCrossPos (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/flex/
H A Dflex_layout_algorithm.cpp1088 float childCrossPos = 0.0f; in PlaceChildren() local
1106childCrossPos = (IsStartTopLeft(crossDirection, textDir_) == (alignItem == FlexAlign::FLEX_START)) in PlaceChildren()
1111 childCrossPos = crossAxisSize_ / 2 - GetChildCrossAxisSize(child) / 2; in PlaceChildren()
1114 childCrossPos = in PlaceChildren()
1118 childCrossPos = 0.0; in PlaceChildren()
1121 childCrossPos = baselineProperties_.maxBaselineDistance - distance; in PlaceChildren()
1129 offset = OffsetF(childMainPos, childCrossPos); in PlaceChildren()
1131 offset = OffsetF(childCrossPos, childMainPos); in PlaceChildren()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/flex/
H A Drender_flex.cpp697 double childCrossPos = 0.0; in PlaceChildren() local
716 childCrossPos = in PlaceChildren()
722 childCrossPos = (crossSize_ / 2.0) - (GetCrossSize(item) / 2.0); in PlaceChildren()
725 childCrossPos = in PlaceChildren()
729 childCrossPos = 0.0; in PlaceChildren()
732 childCrossPos = baselineProperties.maxBaselineDistance - distance; in PlaceChildren()
743 offset = Offset(childMainPos, childCrossPos); in PlaceChildren()
746 …et((item->GetPositionType() == PositionType::PTSEMI_RELATIVE) ? 0.0 : childCrossPos, childMainPos); in PlaceChildren()