Home
last modified time | relevance | path

Searched refs:nextRow (Results 1 – 5 of 5) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/calendar/
H A Dfocusable_grid.cpp54 int32_t nextRow = focusRow_; in FocusMove() local
60 --nextRow; in FocusMove()
63 ++nextRow; in FocusMove()
75 if (nextRow == 0) { in FocusMove()
79 --nextRow; in FocusMove()
83 if (nextRow == rowCount_ - 1) { in FocusMove()
84 FocusChanged(focusIndex_, GetIndexByGrid(nextRow, nextCol)); in FocusMove()
88 ++nextRow; in FocusMove()
91 if ((nextRow < 0) || (nextCol < 0) || (nextRow >= rowCount_) || (nextCol >= colCount_)) { in FocusMove()
94 next = GetIndexByGrid(nextRow, nextCol); in FocusMove()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/irregular/
H A Dgrid_irregular_filler.cpp153 auto nextRow = mat.find(posY_ + 1); in FindNextItem() local
154 while (nextRow != mat.end()) { in FindNextItem()
155 for (const auto [col, item] : nextRow->second) { in FindNextItem()
157 posY_ = nextRow->first; in FindNextItem()
162 ++nextRow; in FindNextItem()
/ohos5.0/foundation/graphic/graphic_3d/lume/metaobject/src/loaders/
H A Dcsv_parser.cpp26 auto nextRow = ParseRow(); in GetRow() local
27 row.swap(nextRow); in GetRow()
/ohos5.0/foundation/graphic/graphic_3d/lume/Lume_3D/src/util/
H A Dmesh_util.cpp180 const uint32_t nextRow = (ring + 1) * sectors; in GenerateSphereGeometry() local
184 indices.push_back(nextRow + sector); in GenerateSphereGeometry()
185 indices.push_back(nextRow + nextS); in GenerateSphereGeometry()
188 indices.push_back(nextRow + nextS); in GenerateSphereGeometry()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Drender_grid_layout.cpp167 int32_t nextRow = focusRow_ < 0 ? 0 : focusRow_; in focusMove() local
173 --nextRow; in focusMove()
176 ++nextRow; in focusMove()
187 if (nextRow < 0 || nextCol < 0 || nextRow >= rowCount_ || nextCol >= colCount_) { in focusMove()
190 next = GetIndexByGrid(nextRow, nextCol); in focusMove()
192 focusRow_ = nextRow; in focusMove()