Lines Matching defs:row
56 for (const auto& row : fTransitions) {
57 stateCount = std::max(stateCount, (int) row.size());
96 std::vector<int>& row = fTransitions[c];
97 while (row.size() <= (size_t) start) {
98 row.push_back(INVALID);
100 row[start] = next;
134 // collapse rows with the same transitions to a single row. This is common, as each row
138 // mappings[<input row>] = <output row>
156 for (std::vector<int>* row : uniques) {
157 newTransitions.push_back(*row);