Home | History | Annotate | Download | only in indent

Lines Matching defs:delim

91 	bool delim = false;	// only relevant if may_wrap
115 delim = true;
117 delim = true;
147 *p_delim = delim;
152 copy_comment_start(bool may_wrap, bool *delim, int line_length)
161 if (*delim && fits_in_one_line(line_length))
162 *delim = false;
163 if (*delim) {
248 copy_comment_wrap_finish(int line_length, bool delim)
250 if (delim) {
277 copy_comment_wrap(int line_length, bool delim)
298 copy_comment_wrap_finish(line_length, delim);
343 bool may_wrap, delim;
346 analyze_comment(&may_wrap, &delim, &line_length);
347 copy_comment_start(may_wrap, &delim, line_length);
349 copy_comment_wrap(line_length, delim);