Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Dgrid_layout_component.h48 (maxCount_ >= minCount_) && (minCount_ >= 1) && (cellLength_ > 0) && editMode_); in UseNonProxiedCodePath()
240 cellLength_ = cellLength; in SetCellLength()
245 return cellLength_; in GetCellLength()
337 int32_t cellLength_ = 0; variable
H A Drender_grid_layout.cpp98 cellLength_ = grid->GetCellLength(); in Update()
113 …(mainCountMax_ >= mainCountMin_) && (mainCountMin_ >= 1) && (cellLength_ > 0) && (editMode_ == tru… in Update()
1575 auto maxHeight = isVertical_ ? mainCountMax_ * cellLength_ + (mainCountMax_ - 1) * rowGap_ in SetGridLayoutParam()
1578 : mainCountMax_ * cellLength_ + (mainCountMax_ - 1) * colGap_; in SetGridLayoutParam()
1579 auto minHeight = isVertical_ ? mainCountMin_ * cellLength_ + (mainCountMin_ - 1) * rowGap_ in SetGridLayoutParam()
1582 : mainCountMin_ * cellLength_ + (mainCountMin_ - 1) * colGap_; in SetGridLayoutParam()
1610 rows = std::vector<double>(rowCount_, cellLength_); in CalculateVerticalSize()
1611 rowSize_ = rowCount_ * cellLength_ + (rowCount_ - 1) * rowGap_; in CalculateVerticalSize()
1636 cols = std::vector<double>(colCount_, cellLength_); in CalculateHorizontalSize()
1637 colSize_ = colCount_ * cellLength_ + (colCount_ - 1) * colGap_; in CalculateHorizontalSize()
H A Drender_grid_layout.h214 return cellLength_; in GetCellLength()
489 int32_t cellLength_ = 0; variable