Lines Matching refs:target_col
53 int cur_col, target_col; in dump_line() local
136 target_col = compute_code_target(); in dump_line()
142 ps.paren_indents[i] = -(ps.paren_indents[i] + target_col); in dump_line()
144 cur_col = pad_output(cur_col, target_col); in dump_line()
147 fprintf(output, "%d", target_col * 7); in dump_line()
201 target_col * 7); in dump_line()
283 int target_col; in compute_code_target() local
285 target_col = ps.ind_size * ps.ind_level + 1; in compute_code_target()
288 target_col += continuation_indent * ps.paren_level; in compute_code_target()
294 && count_spaces(target_col, s_code) <= max_col) { in compute_code_target()
296 if (t > target_col) in compute_code_target()
297 target_col = t; in compute_code_target()
300 target_col = t; in compute_code_target()
303 target_col += continuation_indent; in compute_code_target()
304 return target_col; in compute_code_target()