Lines Matching refs:Row
485 auto Get = [&Distances, Columns](size_t Column, std::size_t Row) -> char & { in nearestMatchesForCodepointName() argument
487 assert(Row < Rows); in nearestMatchesForCodepointName()
488 return Distances[Row * Columns + Column]; in nearestMatchesForCodepointName()
498 auto VisitNode = [&](const Node &N, std::size_t Row, in nearestMatchesForCodepointName()
505 Get(0, Row) = Row; in nearestMatchesForCodepointName()
508 const int Delete = Get(I - 1, Row) + 1; in nearestMatchesForCodepointName()
509 const int Insert = Get(I, Row - 1) + 1; in nearestMatchesForCodepointName()
512 Get(I - 1, Row - 1) + (NormalizedName[I - 1] != N.Name[J] ? 1 : 0); in nearestMatchesForCodepointName()
514 Get(I, Row) = std::min(Insert, std::min(Delete, Replace)); in nearestMatchesForCodepointName()
517 Row++; in nearestMatchesForCodepointName()
520 unsigned Cost = Get(Columns - 1, Row - 1); in nearestMatchesForCodepointName()
532 VisitNode(C, Row, VisitNode); in nearestMatchesForCodepointName()