Home
last modified time | relevance | path

Searched refs:currentItemRowSpan_ (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.cpp42 currentItemRowSpan_ = 1; in AdjustRowColSpan()
45 currentItemRowSpan_ = result.second; in AdjustRowColSpan()
46 currentItemRowEnd_ = currentItemRowStart_ + currentItemRowSpan_ - 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.cpp736 currentItemRowSpan_ = 1; in AdjustRowColSpan()
744 currentItemRowSpan_ = std::max(currentItemRowEnd_ - currentItemRowStart_ + 1, 1); in AdjustRowColSpan()
756 currentItemRowSpan_ = 1; in AdjustRowColSpan()
763 if (currentItemRowSpan_ > 1 || currentItemColSpan_ > 1) { in AdjustRowColSpan()
767 itemLayoutProperty->UpdateRealRowSpan(currentItemRowSpan_); 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.h201 int32_t currentItemRowSpan_ = 0; variable