/src/usr.bin/make/unit-tests/ |
var-op.mk | 3 # Tests for the variable assignment operators.
|
cond-late.mk | 14 # They should also not contain operators like == or <, since these are 15 # actually interpreted as these operators. This is demonstrated below.
|
cond-op.mk | 3 # Tests for operators like &&, ||, ! in .if conditions. 20 # If make were to interpret the && and || operators like the shell, the 27 # lower precedence than the comparison operators. Negating a condition 41 # TODO: Demonstrate that the precedence of the ! and == operators actually 69 # operators, TOK_AND, TOK_OR or TOK_RPAREN are allowed.
|
dep.mk | 7 # As soon as a target is defined using one of the dependency operators, it is
|
directive-if.exp | 12 make: directive-if.mk:88: Don't do this, always put a space around comparison operators.
|
posix-varassign.mk | 7 # The assignment operators "::=" and ":::=" are intentionally not supported,
|
cond-op-parentheses.mk | 4 # the precedence of the operators '!', '&&' and '||'. Parentheses cannot be
|
cond-func.mk | 46 # Characters that could be mistaken for operators must not appear directly 78 # There may be spaces around the operators and parentheses, and even
|
parse.mk | 19 # but didn't contain any of the dependency operators ':', '!', '::' and its
|
directive-for-if.mk | 37 # by either '!' or '=', as part of the operators '!=' or '=='.
|
directive-ifmake.mk | 41 # Multiple targets can be combined using the && and || operators.
|
opt-debug-lint.mk | 88 # expressions and unknown operators. During this check, the subexpression
|
var-scope-local.mk | 188 # operators. 243 # inconsistency between the assignment operators '+=' and '?='. See
|
var-op-sunsh.mk | 132 # assignment operators.
|
varmod-assign.mk | 100 # The modifier for assignment operators starts with a ':'.
|
cond-short.mk | 7 # distinguishes between the operators 'And', 'And Then', 'Or', 'Or Else'.
|
varmod-ifelse.mk | 144 # For strings, only the comparison operators '==' and '!=' are defined,
|
/src/usr.bin/xlint/lint1/ |
README.md | 83 Lint mainly analyzes expressions (`tnode_t`), which are formed from operators 109 The operators and their properties are defined in `oper.c`. 110 Some examples for operators:
|
/src/sys/sys/ |
midiio.h | 303 sbi_instr_data operators; member in struct:sbi_instrument
|
/src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/ |
cpplint.py | 51 # - Check for spaces surrounding operators 219 'whitespace/operators', 1763 - >? and <? operators, and their >?= and <?= cousins. 1819 '>? and <? (max and min) operators are non-standard and deprecated.') 2090 # We could also check all other operators and terminate the search 2202 Things we check for: spaces around operators, spaces after 2336 error(filename, linenum, 'whitespace/operators', 4, 2339 # It's ok not to have spaces around binary operators like + - * /, but if 2343 # You should always have whitespace around binary operators. 2349 error(filename, linenum, 'whitespace/operators', 3 [all...] |