Searched refs:nextRow (Results 1 – 5 of 5) sorted by relevance
54 int32_t nextRow = focusRow_; in FocusMove() local60 --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 …]
153 auto nextRow = mat.find(posY_ + 1); in FindNextItem() local154 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()
26 auto nextRow = ParseRow(); in GetRow() local27 row.swap(nextRow); in GetRow()
180 const uint32_t nextRow = (ring + 1) * sectors; in GenerateSphereGeometry() local184 indices.push_back(nextRow + sector); in GenerateSphereGeometry()185 indices.push_back(nextRow + nextS); in GenerateSphereGeometry()188 indices.push_back(nextRow + nextS); in GenerateSphereGeometry()
167 int32_t nextRow = focusRow_ < 0 ? 0 : focusRow_; in focusMove() local173 --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()