Home
last modified time | relevance | path

Searched refs:fromRow (Results 1 – 2 of 2) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Drender_grid_layout.h362 bool MoveItemsForward(int32_t fromRow, int32_t fromColum, int32_t toRow, int32_t toColum);
365 bool MoveItemsBackward(int32_t fromRow, int32_t fromColum, int32_t toRow, int32_t toColum);
H A Drender_grid_layout.cpp2000 bool RenderGridLayout::MoveItemsForward(int32_t fromRow, int32_t fromColum, int32_t toRow, int32_t … in MoveItemsForward() argument
2003 if (!SortCellIndex(fromRow, fromColum, toRow, toColum, valid) && (!valid)) { in MoveItemsForward()
2014 equal = SortCellIndex(fromRow, fromColum, curRow, curColum, valid); in MoveItemsForward()
2047 equal = SortCellIndex(fromRow, fromColum, curRow, curColum, valid); in MoveItemsForward()
2052 bool RenderGridLayout::MoveItemsBackward(int32_t fromRow, int32_t fromColum, int32_t toRow, int32_t… in MoveItemsBackward() argument
2055 if (!SortCellIndex(fromRow, fromColum, toRow, toColum, valid) && (!valid)) { in MoveItemsBackward()
2059 int32_t curRow = fromRow; in MoveItemsBackward()
2061 int32_t targetRow = fromRow; in MoveItemsBackward()