Lines Matching refs:Col
589 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col; in getMatchingNodes() local
603 Col = LastCol; in getMatchingNodes()
605 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes()
607 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
609 } else if (Col > FirstCol && in getMatchingNodes()
610 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
611 --Col; in getMatchingNodes()
614 SNodeId LMD2 = S2.getLeftMostDescendant(Col); in getMatchingNodes()
618 NodeId Id2 = S2.getIdInRoot(Col); in getMatchingNodes()
623 --Col; in getMatchingNodes()
625 TreePairs.emplace_back(Row, Col); in getMatchingNodes()
627 Col = LMD2; in getMatchingNodes()