| /freebsd/contrib/bmake/unit-tests/ |
| H A D | cmdline-undefined.exp | 2 make: cmdline-undefined.mk:41: From the command line: Undefined is . 3 make: cmdline-undefined.mk:42: From .MAKEFLAGS '=': Undefined is . 4 make: cmdline-undefined.mk:43: From .MAKEFLAGS ':=': Undefined is . 5 make: cmdline-undefined.mk:47: From the command line: Undefined is now defined. 6 make: cmdline-undefined.mk:48: From .MAKEFLAGS '=': Undefined is now defined. 7 make: cmdline-undefined.mk:49: From .MAKEFLAGS ':=': Undefined is now defined. 10 make: cmdline-undefined.mk:41: From the command line: Undefined is . 11 make: cmdline-undefined.mk:42: From .MAKEFLAGS '=': Undefined is . 12 make: cmdline-undefined.mk:43: From .MAKEFLAGS ':=': Undefined is . 13 make: cmdline-undefined.mk:47: From the command line: Undefined is now defined. [all …]
|
| H A D | cmdline-undefined.mk | 1 # $NetBSD: cmdline-undefined.mk,v 1.6 2025/06/30 21:44:39 rillig Exp $ 3 # Tests for undefined variables in expressions in the command line. 11 # expect+30: From the command line: Undefined is . 12 # expect+30: From .MAKEFLAGS '=': Undefined is . 13 # expect+30: From .MAKEFLAGS ':=': Undefined is . 14 # expect+33: From the command line: Undefined is now defined. 15 # expect+33: From .MAKEFLAGS '=': Undefined is now defined. 16 # expect+33: From .MAKEFLAGS ':=': Undefined is now defined. 18 @${.MAKE} -f ${MAKEFILE} print-undefined \ 19 CMDLINE='Undefined is $${UNDEFINED}.' [all …]
|
| H A D | cond-token-var.mk | 29 # expect+1: Variable "UNDEF" is undefined 35 # expect+1: Variable "UNDEF" is undefined 44 # An undefined variable on its own generates a parse error. 45 # expect+1: Variable "UNDEF" is undefined 49 # The :U modifier turns an undefined expression into a defined expression. 63 # expect+1: Variable "U" is undefined 68 # expect+1: Variable "U" is undefined 76 # An undefined variable without a comparison operator generates a parse error. 77 # expect+1: Variable "U" is undefined 119 # An expression in a condition must not be based on an undefined variable, [all …]
|
| H A D | vardebug.exp | 41 Evaluating modifier ${:U...} on value "" (eval, undefined) 54 Evaluating modifier ${:U...} on value "" (eval, undefined) 59 Var_Parse: ${UNDEFINED} (eval-defined-loud) 60 make: vardebug.mk:63: Variable "UNDEFINED" is undefined 65 Var_Parse: ${DYN} (eval-keep-dollar-and-undefined) 66 Var_Parse: ${:U$@} $@ ${@} (eval-keep-dollar-and-undefined) 67 Evaluating modifier ${:U...} on value "" (eval-keep-dollar-and-undefined, undefined) 68 Var_Parse: $@} $@ ${@} (eval-keep-dollar-and-undefined) 69 Result of ${:U$@} is "$(.TARGET)" (eval-keep-dollar-and-undefined, defined) 70 Var_Parse: $@ ${@} (eval-keep-dollar-and-undefined) [all …]
|
| H A D | varmod-defined.exp | 3 Var_Parse: ${8_DOLLARS} (eval-keep-dollar-and-undefined) 5 Var_Parse: ${VAR:D${8_DOLLARS}} (eval-keep-dollar-and-undefined) 6 Evaluating modifier ${VAR:D...} on value "$$$$$$$$" (eval-keep-dollar-and-undefined, regular) 7 Var_Parse: ${8_DOLLARS}} (eval-keep-dollar-and-undefined) 8 Result of ${VAR:D${8_DOLLARS}} is "$$$$$$$$" (eval-keep-dollar-and-undefined, regular) 10 Var_Parse: ${VAR:@var@${8_DOLLARS}@} (eval-keep-dollar-and-undefined) 11 Evaluating modifier ${VAR:@...} on value "$$$$$$$$" (eval-keep-dollar-and-undefined, regular) 16 Var_Parse: ${8_DOLLARS} (eval-keep-undefined) 19 Result of ${VAR:@var@${8_DOLLARS}@} is "$$$$" (eval-keep-dollar-and-undefined, regular)
|
| H A D | cmd-errors-jobs.mk | 15 ${RUN} undefined-direct 16 ${RUN} undefined-indirect 25 # Undefined variables in expressions are not an error. They expand to empty 27 # expect: : undefined-direct--eol 28 # expect: end undefined-direct with status 0 29 # expect: : undefined-direct--eol 30 # expect: end undefined-indirect with status 0 31 undefined-indirect: undefined-direct 32 undefined-direct: 33 : $@-${UNDEFINED}-eol
|
| H A D | cond-token-var.exp | 2 make: cond-token-var.mk:30: Variable "UNDEF" is undefined 3 make: cond-token-var.mk:36: Variable "UNDEF" is undefined 4 make: cond-token-var.mk:46: Variable "UNDEF" is undefined 5 make: cond-token-var.mk:64: Variable "U" is undefined 6 make: cond-token-var.mk:69: Variable "U" is undefined 7 make: cond-token-var.mk:78: Variable "U" is undefined 19 make: cond-token-var.mk:133: Variable "UNDEF" is undefined 21 make: cond-token-var.mk:142: Variable "UNDEF" is undefined 23 make: cond-token-var.mk:151: Variable "UNDEF" is undefined
|
| H A D | varmod-indirect.exp | 16 Var_Parse: ${UNDEF} after (eval-keep-dollar-and-undefined) 19 Var_Parse: ${UNDEF:${:US,a,a,}} after (eval-keep-dollar-and-undefined) 21 Evaluating modifier ${UNDEF:S...} on value "" (eval-keep-dollar-and-undefined, undefined) 25 Result of ${UNDEF:S,a,a,} is "" (eval-keep-dollar-and-undefined, undefined) 28 Var_Parse: ${UNDEF:${:U}} after (eval-keep-dollar-and-undefined) 32 Var_Parse: ${UNDEF:${:UZ}} after (eval-keep-dollar-and-undefined) 34 Evaluating modifier ${UNDEF:Z} on value "" (eval-keep-dollar-and-undefined, undefined)
|
| H A D | cond-undef-lint.mk | 3 # Tests for defined and undefined variables in .if conditions, in lint mode. 6 # accurate error messages in case of undefined variables, instead of the 23 # expect+1: Variable "UNDEF" is undefined 30 # The variable name depends on the undefined variable, which is probably a 34 # expect+1: Variable "VAR." is undefined 42 # refers to an undefined variable, thus an error message. 44 # expect+1: Variable "VAR.defined" is undefined 52 # Variables that are referenced indirectly may be undefined in a condition. 60 # variables. In particular, there is no modifier that would turn undefined
|
| H A D | varname-dot-suffixes.exp | 7 Var_Parse: ${.SUFFIXES::=assign} (eval-keep-dollar-and-undefined) 8 …difier ${.SUFFIXES::...} on value ".c .o .1 .err .tar.gz" (eval-keep-dollar-and-undefined, regular) 11 Result of ${.SUFFIXES::=assign} is "" (eval-keep-dollar-and-undefined, regular) 13 Var_Parse: ${preserve:L:_=.SUFFIXES} (eval-keep-dollar-and-undefined) 14 Evaluating modifier ${preserve:L} on value "" (eval-keep-dollar-and-undefined, undefined) 15 Result of ${preserve:L} is "preserve" (eval-keep-dollar-and-undefined, defined) 16 Evaluating modifier ${preserve:_...} on value "preserve" (eval-keep-dollar-and-undefined, defined) 18 Result of ${preserve:_=.SUFFIXES} is "preserve" (eval-keep-dollar-and-undefined, defined) 23 Evaluating modifier ${1 2:L} on value "" (eval, undefined)
|
| H A D | var-scope-local.exp | 11 target-rule.ext: % = <undefined> 13 target-rule.ext: < = <undefined> 16 dir/subdir/target-rule.ext: % = <undefined> 18 dir/subdir/target-rule.ext: < = <undefined> 21 target-rule.ir-gen-from: % = <undefined> 23 target-rule.ir-gen-from: < = <undefined> 26 dir/subdir/target-rule-dir.ir-gen-from: % = <undefined> 28 dir/subdir/target-rule-dir.ir-gen-from: < = <undefined> 31 inference-rule.ir-to: % = <undefined> 36 dir/subdir/inference-rule.ir-to: % = <undefined> [all …]
|
| H A D | cond-func-empty.mk | 16 # An undefined variable counts as empty. 21 # An undefined variable has the empty string as the value, and the :M 30 # no longer empty, but it is still based on an undefined variable. There are 31 # a few modifiers that turn an undefined expression into a defined expression, 33 # expression, the expression is still undefined, so its final value becomes an 43 # The :U modifier changes the state of a previously undefined expression from 51 # When an expression is based on an undefined variable, its modifiers interact 52 # in sometimes surprising ways. Applying the :S modifier to the undefined 54 # is based on an undefined variable. The :U modifier that follows only looks 59 # Since the variable was undefined to begin with, the fallback value from the [all …]
|
| H A D | var-op-expand.mk | 23 # expressions based on undefined variables are preserved though. 25 # Whether an expression is undefined or not is determined at the end 27 # to "fallback"; initially this expression is undefined since it is based on 49 # reference to an undefined variable 71 # expression with an indirect modifier referring to an undefined variable 77 UNDEF= Uwas undefined 78 .if ${VAR} != "was undefined" 84 # in turn refers to an undefined variable 96 UNDEF= Uwas undefined 102 # In variable assignments using the ':=' operator, undefined variables are [all …]
|
| H A D | varmod-sun-shell.exp | 3 Var_Parse: ${echo word; ${:U(exit 13)}:L:sh} (eval-keep-dollar-and-undefined) 4 …aluating modifier ${echo word; (exit 13):L} on value "" (eval-keep-dollar-and-undefined, undefined) 5 Result of ${echo word; (exit 13):L} is "echo word; (exit 13)" (eval-keep-dollar-and-undefined, defi… 6 …cho word; (exit 13):s...} on value "echo word; (exit 13)" (eval-keep-dollar-and-undefined, defined) 9 Result of ${echo word; (exit 13):sh} is "word" (eval-keep-dollar-and-undefined, defined)
|
| H A D | directive-ifndef.mk | 32 .ifndef UNDEFINED && UNDEFINED 36 .ifndef UNDEFINED && DEFINED 42 .ifndef !UNDEFINED && !UNDEFINED 45 .ifndef !UNDEFINED && !DEFINED
|
| H A D | cmd-errors-lint.mk | 8 all: undefined unclosed-expression unclosed-modifier unknown-modifier end 10 # Undefined variables in expressions are not an error. They expand to empty 12 undefined: 13 # expect: : undefined 14 : $@ ${UNDEFINED}
|
| H A D | cmd-errors.mk | 6 all: undefined unclosed-expression unclosed-modifier unknown-modifier end 8 # Undefined variables in expressions are not an error. They expand to empty 10 undefined: 11 # expect: : undefined--eol 12 : $@-${UNDEFINED}-eol
|
| H A D | directive-undef.mk | 8 # Before var.c 1.737 from 2020-12-19, .undef only undefined the first 41 # undefined, but these characters do not appear in variables names anyway. 51 .if ${1:U_}${2:U_}${3:U_} != "___" # these have been undefined 56 # A variable named " " cannot be undefined. There's no practical use case 69 # A variable named "$" can be undefined since the argument to .undef is 110 # When an exported variable is undefined, the variable is removed both from 128 .if ${DIRECT:Uundefined} != "undefined" 131 .if ${INDIRECT:Uundefined} != "undefined"
|
| /freebsd/crypto/krb5/src/windows/leash/htmlhelp/html/ |
| H A D | Renew_Tickets2.html | 18 …undefined"><span style="font-weight: bold;">Option</span></td><td style="text-align: center; width… 22 …undefined" valign="undefined">Automatic Ticket Renewal</td><td style="width: 155px;" align="undefi… 26 …undefined" valign="undefined">Expiration Alarm</td><td style="width: 155px;" align="undefined" val… 29 …undefined" valign="undefined">Destroy Tickets on Exit</td><td style="width: 155px;" align="undefin…
|
| /freebsd/contrib/llvm-project/lld/docs/ |
| H A D | WebAssembly.rst | 72 .. option:: --allow-undefined 74 Allow undefined symbols in linked binary. This is the legacy 76 ``--import-undefined``. 78 .. option:: --allow-undefined-file=<filename> 80 Like ``--allow-undefined``, but the filename specified a flat list of 81 symbols, one per line, which are allowed to be undefined. 85 This is a more full featured version of ``--allow-undefined``. 96 Resolve all undefined symbols to zero. For data and function addresses 98 trapping stub function in place of the undefined function. 102 Undefined symbols generate WebAssembly imports, including undefined data [all …]
|
| /freebsd/contrib/llvm-project/lld/MachO/ |
| H A D | SymbolTable.cpp | 157 } else if (auto *undef = dyn_cast<Undefined>(s)) { in addDefined() 233 replaceSymbol<Undefined>(s, name, file, refState, in addUndefined() 241 else if (auto *undefined = dyn_cast<Undefined>(s)) in addUndefined() local 242 undefined->refState = std::max(undefined->refState, refState); in addUndefined() 274 } else if (auto *undefined = dyn_cast<Undefined>(s)) { in addDylib() local 275 refState = undefined->refState; in addDylib() 282 if (wasInserted || isa<Undefined>(s) || in addDylib() 304 } else if (isa<Undefined>(s)) { in addLazyArchive() 322 } else if (isa<Undefined>(s)) { in addLazyObject() 353 static Defined *createBoundarySymbol(const Undefined &sym) { in createBoundarySymbol() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | Lint.cpp | 10 // which produce undefined or likely unintended behavior in LLVM IR. 30 // for the same kinds of things and turns instructions with undefined behavior 181 // This isn't undefined behavior, it's just a little unusual, and it's a in visitFunction() 198 "Undefined behavior: Caller and callee calling convention differ", in visitCallBase() 206 "Undefined behavior: Call argument count mismatches callee " in visitCallBase() 211 "Undefined behavior: Call return type mismatches " in visitCallBase() 224 "Undefined behavior: Call argument type mismatches " in visitCallBase() 276 Twine("Undefined behavior: ABI attribute ") + in visitCallBase() 282 Twine("Undefined behavior: ABI attribute ") + in visitCallBase() 303 "Undefined behavior: Call with \"tail\" keyword references " in visitCallBase() [all …]
|
| /freebsd/usr.bin/getconf/ |
| H A D | getconf.c | 120 printf("undefined\n"); in main() 127 printf("undefined\n"); in main() 135 printf("undefined\n"); in main() 141 printf("undefined\n"); in main() 153 printf("undefined\n"); in main() 175 printf("undefined\n"); in do_onestr() 197 printf("undefined\n"); in do_onesys() 221 printf("undefined\n"); in do_onepath() 246 printf("undefined\n"); in do_confstr() 266 printf("undefined\n"); in do_sysconf() [all …]
|
| /freebsd/contrib/llvm-project/lld/docs/ELF/ |
| H A D | warn_backrefs.rst | 4 ``--warn-backrefs`` gives a warning when an undefined symbol reference is 8 right maintaining the set of undefined symbol references from the files loaded 12 set of undefined symbol references. When all resolving definitions have been 15 an undefined symbol resolved by an archive to the left of it. For example: 19 will result in an ``undefined reference`` error. If there are no cyclic 27 still search that archive for resolving any undefined references. This means 51 will result in an ``undefined reference`` error: 56 ``B``, your link may fail surprisingly with ``undefined symbol: 63 fail surprisingly with ``undefined symbol`` if there is somehow a dependency on
|
| /freebsd/sys/arm/include/ |
| H A D | undefined.h | 1 /* $NetBSD: undefined.h,v 1.4 2001/12/20 01:20:23 thorpej Exp $ */ 41 * undefined.h 43 * Undefined instruction types, symbols and prototypes 62 /* Prototypes for undefined.c */ 84 /* Calls up to undefined.c from trap handlers */ 89 /* End of undefined.h */
|