Lines Matching +full:- +full:- +full:add

7 # SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later
21 # Spaces-only indentation
29 # Line-up strings broken by '\'
32 # Braces on the same line (Egyptian-style braces)
43 # Braces on same line as keywords that follow them - 'else' and the 'while' in 'do {} while ()';
47 sp_brace_else = add
52 nl_fcall_brace = add
53 nl_fdef_brace = add
59 sp_assign = add
61 # Remove spaces around the preprocessor '##' token-concatenate
65 sp_bool = add
70 # No space after the bitwise-not '~' operator
76 # No space around the member '.' and '->' operators
82 # No space after a unary negation '-'
85 # No space between the '++'/'--' operator and its operand
89 sp_compare = add
99 # No spaces inside cast parentheses '( char )x' -> '(char)x'
113 # Remove spaces between nested parentheses '( (' -> '(('
128 sp_before_ptr_star = add
143 sp_after_type = add
150 # (Uncrustify >= 0.73.0) Remove space before a semi in a non-empty for
157 # Add a space after a ';' (unless a comment follows)
158 sp_after_semi = add
159 # (Uncrustify >= 0.73.0) Add a space after a semi in non-empty for statements
160 sp_after_semi_for = add
168 sp_after_comma = add
176 # Must have space after a cast - '(char)x' -> '(char) x'
177 sp_after_cast = add
183 sp_inside_braces = add
186 sp_inside_braces_enum = add
189 sp_inside_braces_struct = add
192 sp_type_func = add
206 sp_macro = add
207 sp_macro_func = add
213 sp_before_nl_cont = add
216 sp_cond_colon = add
217 sp_cond_question = add
220 sp_endif_cmt = add
226 nl_end_of_file = add
229 # Add braces in single-line statements
230 mod_full_brace_do = add
231 mod_full_brace_for = add
232 mod_full_brace_if = add
233 mod_full_brace_while = add
238 # Disable removal of leading spaces in a multi-line comment if the first and