Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/grid_layout/
H A Dgrid_layout_algorithm.cpp148 std::map<int32_t, int32_t> rowMap; in CheckGridPlaced() local
151 rowMap = iter->second; in CheckGridPlaced()
154 rowMap.emplace(std::make_pair(j, index)); in CheckGridPlaced()
156 gridLayoutInfo_.gridMatrix_[i] = rowMap; in CheckGridPlaced()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/grid_layout/
H A Drender_grid_layout.cpp825 std::map<int32_t, int32_t> rowMap; in CheckGridPlaced() local
828 rowMap = iter->second; in CheckGridPlaced()
831 rowMap.emplace(std::make_pair(j, index)); in CheckGridPlaced()
833 gridMatrix_[i] = rowMap; in CheckGridPlaced()
2104 std::map<int32_t, int32_t> rowMap; in UpdateMatrixByIndexStrong() local
2108 rowMap = rowIter->second; in UpdateMatrixByIndexStrong()
2111 auto indexIter = rowMap.find(column); in UpdateMatrixByIndexStrong()
2112 if (indexIter != rowMap.end()) { in UpdateMatrixByIndexStrong()
2113 rowMap[column] = index; in UpdateMatrixByIndexStrong()
2115 rowMap.emplace(std::make_pair(column, index)); in UpdateMatrixByIndexStrong()
[all …]