Home | History | Annotate | Download | only in indent

Lines Matching defs:ind

69 			int ind = ind_add(ps.comment_ind + 3,
71 ind += p == start || ch_isblank(p[-1]) ? 2 : 3;
72 return ind <= max_line_length;
92 int ind;
97 ind = 0;
109 ind = (ps.ind_level - opt.unindent_displace)
111 if (ind <= 0)
112 ind = opt.format_col1_comments ? 0 : 1;
123 ind = ps.line_has_decl || ps.ind_level == 0
126 if (ind <= min_ind)
127 ind = next_tab(min_ind);
128 if (ind + 25 > line_length)
129 line_length = ind + 25;
145 ps.comment_ind = ind;
173 int ind = ind_add(ps.comment_ind, com.s, com.len);
179 ind++;
182 if (ind >= line_length && *last_blank != -1)
186 if (ind <= line_length)