Lines Matching refs:Row
590 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col; in getMatchingNodes() local
603 Row = LastRow; in getMatchingNodes()
606 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes()
607 if (Row > FirstRow && in getMatchingNodes()
608 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
609 --Row; in getMatchingNodes()
611 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
614 SNodeId LMD1 = S1.getLeftMostDescendant(Row); in getMatchingNodes()
618 NodeId Id1 = S1.getIdInRoot(Row); in getMatchingNodes()
623 --Row; in getMatchingNodes()
626 TreePairs.emplace_back(Row, Col); in getMatchingNodes()
627 Row = LMD1; in getMatchingNodes()