Lines Matching defs:line_length
93 int line_length = opt.max_line_length;
113 line_length = opt.block_comment_max_line_length;
128 if (ind + 25 > line_length)
129 line_length = ind + 25;
148 *p_line_length = line_length;
152 copy_comment_start(bool may_wrap, bool *delim, int line_length)
161 if (*delim && fits_in_one_line(line_length))
171 copy_comment_wrap_text(int line_length, ssize_t *last_blank)
182 if (ind >= line_length && *last_blank != -1)
186 if (ind <= line_length)
248 copy_comment_wrap_finish(int line_length, bool delim)
259 if (ind_add(ps.comment_ind, com.s, len) + 3 > line_length)
277 copy_comment_wrap(int line_length, bool delim)
293 copy_comment_wrap_text(line_length, &last_blank);
298 copy_comment_wrap_finish(line_length, delim);
344 int line_length;
346 analyze_comment(&may_wrap, &delim, &line_length);
347 copy_comment_start(may_wrap, &delim, line_length);
349 copy_comment_wrap(line_length, delim);