Lines Matching defs:options

143 struct options {  struct
144 int blanklines_around_conditional_compilation;
145 int blanklines_after_declarations_at_proctop; /* this is vaguely
152 int blanklines_after_declarations;
153 int blanklines_after_procs;
154 int blanklines_before_blockcomments;
155 int leave_comma; /* if true, never break declarations after
157 int btype_2; /* when true, brace should be on same line
159 int Bill_Shannon; /* true iff a blank should always be
161 int comment_delimiter_on_blankline;
162 int decl_com_ind; /* the column in which comments after
164 int cuddle_else; /* true if else should cuddle up to '}' */
165 int continuation_indent; /* set to the indentation between the
167 float case_indent; /* The distance to indent case labels from the
169 int com_ind; /* the column in which comments to the right
171 int decl_indent; /* column to indent declared identifiers to */
172 int ljust_decl; /* true if declarations should be left
174 int unindent_displace; /* comments not to the right of code
178 int extra_expression_indent; /* true if continuation lines from
183 int else_if; /* True iff else if pairs should be handled
185 int function_brace_split; /* split function declaration and
187 int format_col1_comments; /* If comments which start in column 1
190 int format_block_comments; /* true if comments beginning with
192 int indent_parameters;
193 int ind_size; /* the size of one indentation level */
194 int block_comment_max_col;
195 int local_decl_indent; /* like decl_indent but for locals */
196 int lineup_to_parens_always; /* if true, do not attempt to keep
198 int lineup_to_parens; /* if true, continued code within parens
222 extern struct options opt; argument