Lines Matching defs:options

146 struct options {  struct
147 int blanklines_around_conditional_compilation;
148 int blanklines_after_declarations_at_proctop; /* this is vaguely
155 int blanklines_after_declarations;
156 int blanklines_after_procs;
157 int blanklines_before_blockcomments;
158 int leave_comma; /* if true, never break declarations after
160 int btype_2; /* when true, brace should be on same line
162 int Bill_Shannon; /* true iff a blank should always be
164 int comment_delimiter_on_blankline;
165 int decl_com_ind; /* the column in which comments after
167 int cuddle_else; /* true if else should cuddle up to '}' */
168 int continuation_indent; /* set to the indentation between the
170 float case_indent; /* The distance to indent case labels from the
172 int com_ind; /* the column in which comments to the right
174 int decl_indent; /* column to indent declared identifiers to */
175 int ljust_decl; /* true if declarations should be left
177 int unindent_displace; /* comments not to the right of code
181 int extra_expression_indent; /* true if continuation lines from
186 int else_if; /* True iff else if pairs should be handled
188 int function_brace_split; /* split function declaration and
190 int format_col1_comments; /* If comments which start in column 1
193 int format_block_comments; /* true if comments beginning with
195 int indent_parameters;
196 int ind_size; /* the size of one indentation level */
197 int block_comment_max_col;
198 int local_decl_indent; /* like decl_indent but for locals */
199 int lineup_to_parens_always; /* if true, do not attempt to keep
223 extern struct options opt; argument