Lines Matching defs:NO
70 .if ${1 == == 2:?yes:no} != ""
91 # done since there is no well-formed comparison in the condition at all.
94 .if "${1 == == 2:?yes:no}" != ""
120 # HAVE_GCC=no, the following conditional generated this error message:
122 # make: Bad conditional expression 'string == "literal" && no >= 10'
123 # in 'string == "literal" && no >= 10?yes:no'
136 # string == "literal" && no >= 10
140 # the right-hand side 'no >= 10'. The word 'no' is obviously a string
157 NUMBER= no # not really a number
158 # expect+1: no.
159 .info ${${STRING} == "literal" && ${NUMBER} >= 10:?yes:no}.
160 # expect+2: Comparison with ">=" requires both operands "no" and "10" to be numeric
162 .info ${${STRING} == "literal" || ${NUMBER} >= 10:?yes:no}.
169 .info ${${STRING} == "literal" && ${NUMBER} >= 10:?yes:no}.
172 .info ${${STRING} == "literal" || ${NUMBER} >= 10:?yes:no}.
235 # same way, no matter whether they are evaluated or not.
241 # must parse both of its branches in the same way, no matter whether they are
269 # no way to escape a '$' directly in the variable name, but there are
282 # expect+1: no
283 .info ${ ${:U \${DELAYED\} == "one"}:?yes:no}
285 .info ${ ${:U \${DELAYED\} == "two"}:?yes:no}
287 # expect+1: no
288 .info ${ ${INDIRECT_COND1}:?yes:no}
291 .info ${ ${INDIRECT_COND2}:?yes:no}
303 NO= ${0:?${BRACES:S,}}},yes,}:${BRACES:S,}}},no,}}
304 YES= ${1:?${BRACES:S,}}},yes,}:${BRACES:S,}}},no,}}
305 BOTH= <${YES}> <${NO}>
306 .if ${BOTH} != "<yes> <no>"