Lines Matching +defs:ind +defs:line

74 	lsym_preprocessing,	/* the initial '#' of a preprocessing line */
154 * make the next line available, invalidating any pointers into the previous
155 * line.
159 struct buffer line;
172 extern struct buffer code; /* the main part of the current line of code,
174 extern struct buffer com; /* the trailing comment of the line, or the
175 * start or end of a multi-line comment, or
176 * while in process_comment, a single line of a
177 * multi-line comment */
187 * blank line to be generated
193 bool break_after_comma; /* whether to add a line break after each
195 bool brace_same_line; /* whether a brace should be on same line as an
244 * have stars at the beginning of each line */
299 * In a source file, the types of line determine the vertical spacing, such as
305 * newline or preprocessing line */
323 * a line, or at the first '*' from inside a
324 * declaration when the line starts with words
327 bool line_has_decl; /* whether this line of code has part of a
345 int ind_level; /* the indentation level for the line that is
348 * after the current line is printed */
349 bool line_is_stmt_cont; /* whether the current line should have an
377 * is used for indenting a continuation line of
391 int comment_shift; /* all but the first line of a boxed comment
393 bool comment_cont; /* after the first line of a comment */
406 } newline; /* decides whether to insert a line break
422 * next line is a candidate for inserting a
423 * blank line above */
424 badp_yes, /* this line is a candidate for inserting a
425 * blank line above, unless the line turns out
427 } badp; /* insert a blank line before the first
443 } line_kind; /* kind of the line that is being prepared for
445 * trying to send a line to the output, even if
446 * that line was a suppressed blank line; used
448 enum line_kind prev_line_kind; /* the kind of line that was actually
547 next_tab(int ind)
549 return ind - ind % opt.tabsize + opt.tabsize;