Home
last modified time | relevance | path

Searched refs:currentItemRowEnd_ (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.cpp41 currentItemRowEnd_ = -1; in AdjustRowColSpan()
46 currentItemRowEnd_ = currentItemRowStart_ + currentItemRowSpan_ - 1; in AdjustRowColSpan()
57 irregualItemInfo.mainEnd = isVertical ? currentItemRowEnd_ : currentItemColEnd_; in AdjustRowColSpan()
60 irregualItemInfo.crossEnd = isVertical ? currentItemColEnd_ : currentItemRowEnd_; in AdjustRowColSpan()
H A Dgrid_scroll_layout_algorithm.cpp710 currentItemRowEnd_ = itemLayoutProperty->GetRowEnd().value_or(-1); in NeedAdjust()
711 if ((currentItemRowEnd_ < 0) || (currentItemRowEnd_ >= static_cast<int32_t>(main))) { in NeedAdjust()
741 currentItemRowEnd_ = -1; in AdjustRowColSpan()
744 currentItemRowSpan_ = std::max(currentItemRowEnd_ - currentItemRowStart_ + 1, 1); in AdjustRowColSpan()
750 currentItemRowEnd_ = -1; in AdjustRowColSpan()
752 if ((currentItemRowStart_ == -1 && currentItemRowEnd_ != -1) || in AdjustRowColSpan()
753 (currentItemRowEnd_ == -1 && currentItemRowStart_ != -1) || in AdjustRowColSpan()
761 currentItemRowEnd_ = -1; in AdjustRowColSpan()
H A Dgrid_scroll_layout_algorithm.h205 int32_t currentItemRowEnd_ = -1; variable