Lines Matching defs:DEFINED
4 # 'defined(word)'.
6 DEFINED= defined
14 # There is a variable named 'DEFINED', so the condition evaluates to true.
15 .ifdef DEFINED
20 # Since a bare word is an abbreviation for 'defined(word)', these can be
22 .ifdef UNDEF && DEFINED
25 .ifdef UNDEF || DEFINED
30 # It looks redundant to have a call to defined() in an .ifdef, but it's
32 .ifdef defined(DEFINED)