Lines Matching refs:Col
590 SNodeId LastRow, LastCol, FirstRow, FirstCol, Row, Col; in getMatchingNodes() local
604 Col = LastCol; in getMatchingNodes()
606 while (Row > FirstRow || Col > FirstCol) { in getMatchingNodes()
608 ForestDist[Row - 1][Col] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
610 } else if (Col > FirstCol && in getMatchingNodes()
611 ForestDist[Row][Col - 1] + 1 == ForestDist[Row][Col]) { in getMatchingNodes()
612 --Col; in getMatchingNodes()
615 SNodeId LMD2 = S2.getLeftMostDescendant(Col); in getMatchingNodes()
619 NodeId Id2 = S2.getIdInRoot(Col); in getMatchingNodes()
624 --Col; in getMatchingNodes()
626 TreePairs.emplace_back(Row, Col); in getMatchingNodes()
628 Col = LMD2; in getMatchingNodes()