Searched refs:rowMap (Results 1 – 2 of 2) sorted by relevance
148 std::map<int32_t, int32_t> rowMap; in CheckGridPlaced() local151 rowMap = iter->second; in CheckGridPlaced()154 rowMap.emplace(std::make_pair(j, index)); in CheckGridPlaced()156 gridLayoutInfo_.gridMatrix_[i] = rowMap; in CheckGridPlaced()
825 std::map<int32_t, int32_t> rowMap; in CheckGridPlaced() local828 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() local2108 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 …]