Lines Matching refs:Row
589 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col; in getMatchingNodes() local
602 Row = LastRow; in getMatchingNodes()
605 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes()
606 if (Row > FirstRow && in getMatchingNodes()
607 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
608 --Row; in getMatchingNodes()
610 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
613 SNodeId LMD1 = S1.getLeftMostDescendant(Row); in getMatchingNodes()
617 NodeId Id1 = S1.getIdInRoot(Row); in getMatchingNodes()
622 --Row; in getMatchingNodes()
625 TreePairs.emplace_back(Row, Col); in getMatchingNodes()
626 Row = LMD1; in getMatchingNodes()