Lines Matching refs:define
72 # # define AB 1
73 # # define CDE 22
74 # # define F 3333
147 my $in_macro_header; # number of open parentheses + 1 in (multi-line) header of #define, if $in_preproc != 0
700 $_ = "$lead$space$preproc_directive$_" if $preproc_directive =~ m/^(define|include)$/; # yet do not blank #define or #include to prevent confusing the indentation or whitespace checks, resp.
832 && !(m/^\s*#\s*define\s+\w+\s+\(/); # not a macro without parameters having a body that starts with '('
994 # macro parameters should always be in parens (except when passed on), e.g., '#define ID(x) (x)'
1198 # trailing '\'typically used in preprocessor directive like '#define'
1201 $in_macro_header = m/^\s*#\s*define(\W|$)?(.*)/ ? 1 + parens_balance($2) : 0; # '#define' is beginning