Lines Matching refs:table
71 diff_table_entry table[a_lines.size() + 1][b_lines.size() + 1]; in PrintDiff() local
86 table[i][j].longest_common_subsequence_length = 0; in PrintDiff()
87 table[i][j].propagation_directions = directions; in PrintDiff()
89 table[i][j].longest_common_subsequence_length = in PrintDiff()
90 table[i-1][j-1].longest_common_subsequence_length + 1; in PrintDiff()
91 table[i][j].propagation_directions = UP_LEFT; in PrintDiff()
93 size_t length_up = table[i-1][j].longest_common_subsequence_length; in PrintDiff()
94 size_t length_left = table[i][j-1].longest_common_subsequence_length; in PrintDiff()
108 table[i][j].longest_common_subsequence_length = length; in PrintDiff()
109 table[i][j].propagation_directions = directions; in PrintDiff()
118 while (table[i][j].propagation_directions) { in PrintDiff()
119 if (table[i][j].propagation_directions & UP_LEFT) { in PrintDiff()
123 } else if (table[i][j].propagation_directions & UP) { in PrintDiff()