Home
last modified time | relevance | path

Searched refs:currentItemColSpan_ (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/grid_scroll/
H A Dgrid_scroll_with_options_layout_algorithm.cpp38 currentItemColSpan_ = result.second; in AdjustRowColSpan()
39 currentItemColEnd_ = currentItemColStart_ + currentItemColSpan_ - 1; in AdjustRowColSpan()
49 currentItemColSpan_ = 1; in AdjustRowColSpan()
52 if (currentItemRowSpan_ > 1 || currentItemColSpan_ > 1) { in AdjustRowColSpan()
58 irregualItemInfo.mainSpan = isVertical ? currentItemRowSpan_ : currentItemColSpan_; in AdjustRowColSpan()
61 irregualItemInfo.crossSpan = isVertical ? currentItemColSpan_ : currentItemRowSpan_; in AdjustRowColSpan()
H A Dgrid_scroll_layout_algorithm.cpp737 currentItemColSpan_ = 1; in AdjustRowColSpan()
745 currentItemColSpan_ = std::max(currentItemColEnd_ - currentItemColStart_ + 1, 1); in AdjustRowColSpan()
757 currentItemColSpan_ = 1; in AdjustRowColSpan()
763 if (currentItemRowSpan_ > 1 || currentItemColSpan_ > 1) { in AdjustRowColSpan()
768 itemLayoutProperty->UpdateRealColumnSpan(currentItemColSpan_); in AdjustRowColSpan()
774 auto mainSpan = axis_ == Axis::VERTICAL ? currentItemRowSpan_ : currentItemColSpan_; in LargeItemLineHeight()
1300 auto mainSpan = axis_ == Axis::VERTICAL ? currentItemRowSpan_ : currentItemColSpan_; in AddForwardLines()
1582 auto mainSpan = axis_ == Axis::VERTICAL ? currentItemRowSpan_ : currentItemColSpan_; in MeasureNewChild()
1586 auto crossSpan = axis_ == Axis::VERTICAL ? currentItemColSpan_ : currentItemRowSpan_; in MeasureNewChild()
1632 auto crossSpan = axis_ == Axis::VERTICAL ? currentItemColSpan_ : currentItemRowSpan_; in MeasureChildPlaced()
[all …]
H A Dgrid_scroll_layout_algorithm.h202 int32_t currentItemColSpan_ = 0; variable