Searched refs:expanded (Results 1 - 25 of 76) sorted by relevance

1234

/freebsd-13-stable/contrib/bmake/unit-tests/
H A Ddepsrc.exp1 : 'Undefined variables are expanded directly in the dependency'
2 : 'declaration. They are not preserved and maybe expanded later.'
H A Ddeptgt-end-jobs.exp6 : .BEGIN 'Should not be expanded.' deferred
7 : all 'Should not be expanded.' deferred
H A Ddeptgt-end.exp6 : .BEGIN 'Should not be expanded.' deferred
7 : all 'Should not be expanded.' deferred
8 : end-action 'Should not be expanded.' deferred
H A Ddepsrc.mk10 # Demonstrate when exactly undefined variables are expanded in a dependency
17 : 'Undefined variables are expanded directly in the dependency'
18 : 'declaration. They are not preserved and maybe expanded later.'
21 : 'Undefined variables are tried to be expanded in a dependency'
23 : 'the expression is preserved and tried to be expanded later.'
H A Dopt-var-expanded.mk1 # $NetBSD: opt-var-expanded.mk,v 1.4 2020/11/09 20:50:56 rillig Exp $
H A Dopt-debug-jobs.exp4 echo ": expanded expression"
5 { : expanded expression
20 : expanded expression
H A Dvarparse-undef-partial.mk3 # When an undefined variable is expanded in a ':=' assignment, only the
6 # a completely different interpretation of the partially expanded text.
16 # of the expression is expanded as usual.
26 # Define the possible outcomes, to see which of them gets expanded.
31 # ${VAR.:Q} is expanded, consisting of the variable name "VAR." and the
39 # defined. It is expanded as usual, interpreting the ":Q" as part of the
48 # subexpressions be expanded already?
55 # expression is expanded early, or whether the whole ${COPTS.${COMPILER}} is
56 # expanded as soon as the variable COPTS.${COMPILER} becomes defined. The
57 # expression ${COMPILER} would be expanded severa
[all...]
H A Dunexport.mk13 # been replaced with a simple space, and variables are not yet expanded.
H A Ddep-var.mk18 # At the point where the expression ${DEF2} is expanded, the variable DEF2
29 # Try out how many levels of indirection are really expanded in dependency
35 # waiting to be expanded at some later point.
37 # Later, in SuffExpandChildren, that expression is expanded again by calling
40 # This string is not expanded anymore by Var_Parse. But there is another
46 # variable is expanded when the shell command is generated. At that point,
47 # the $I is expanded. Since the variable I is not defined, it expands to
72 # fully expanded before parsing, therefore any ':' in a target or source name
77 # "all" target, that is, the "$$I" is first expanded to "$I", and in a second
H A Dcmdline-undefined.mk7 # '=' assignment operator do get their variable name expanded
9 # variable value is not expanded, as usual.
H A Ddirective-export-gmake.mk48 # The right-hand side of the exported variable is expanded exactly once.
49 TWICE= expanded twice
50 ONCE= expanded once, leaving $${TWICE} as-is
52 .if ${:!echo "\$VAR"!} != "expanded once, leaving \${TWICE} as-is"
H A Ddeptgt-end-jobs.mk14 VAR= Should not be expanded.
20 # Oops: The deferred command must not be expanded twice.
33 # Oops: The deferred command must not be expanded twice.
H A Ddeptgt-end.mk6 VAR= Should not be expanded.
12 # Oops: The deferred command must not be expanded twice.
32 # Oops: The deferred command must not be expanded twice.
H A Dcounter-append.mk17 # This variable is first set to empty and then expanded.
H A Dcounter.mk17 # This variable is first set to empty and then expanded.
H A Ddirective-export.mk18 # During that, its value is expanded, just like almost everywhere else.
H A Dvarmod-match-escape.mk25 # before the variable expression is expanded. This means that the '\:' in
26 # the variable expression is expanded as well, turning ${:U\:} into a simple
58 # '\{' nor '\}'. But the text is expanded, and a lonely '$' at the end
59 # is silently discarded. The resulting expanded pattern is thus '\', that
H A Dopt-debug-file.mk20 # value contains ${:Uexpanded}. This variable expression is expanded
23 .if !${DEBUG_OUTPUT:tW:M*VAR = value expanded*}
H A Dvarmisc.exp2 :D expanded when var set
5 :U expanded when var undef
H A Dvar-op-default.mk51 # fixed. Before, the '?=' operator had not expanded the variable name
55 # during that, the variable name was expanded.
62 # Now demonstrate that the variable name is indeed expanded exactly once.
/freebsd-13-stable/contrib/tcsh/
H A Dsh.dol.c100 Char **expanded; local
102 expanded = Dfix2(t->t_dcom); /* found one */
104 t->t_dcom = expanded;
117 Char *Dv[2], **expanded; local
123 expanded = Dfix2(Dv);
124 if (expanded[0] == NULL || expanded[1] != NULL) {
125 blkfree(expanded);
129 cp = Strsave(expanded[0]);
130 blkfree(expanded);
[all...]
/freebsd-13-stable/usr.sbin/autofs/
H A Ddefined.c86 char c, *expanded, *name; local
90 expanded = checked_strdup(string);
191 ret = asprintf(&expanded, "%.*s%s%s",
196 //log_debugx("\"%s\" expanded to \"%s\"", string, expanded);
202 string = expanded;
214 return (expanded);
/freebsd-13-stable/crypto/openssl/crypto/ec/curve448/
H A Deddsa.c154 uint8_t expanded[EDDSA_448_PRIVATE_BYTES * 2]; local
156 if (!oneshot_hash(expanded, sizeof(expanded), privkey,
159 clamp(expanded);
160 curve448_scalar_decode_long(secret_scalar, expanded,
166 expanded + EDDSA_448_PRIVATE_BYTES,
169 OPENSSL_cleanse(expanded, sizeof(expanded));
172 OPENSSL_cleanse(expanded, sizeof(expanded));
[all...]
/freebsd-13-stable/contrib/ncurses/form/
H A Dfld_def.c310 New_Field->expanded = typeCalloc(char *, 1 + (unsigned)nbuf);
385 if (field->expanded != 0)
391 FreeIfNeeded(field->expanded[n]);
393 free(field->expanded);
/freebsd-13-stable/usr.bin/rctl/
H A Drctl.c112 * Replace human-readable number with its expanded form.
119 char *copy, *expanded, *tofree; local
161 ret = asprintf(&expanded, "%s:%s:%s:%s=%ju",
164 ret = asprintf(&expanded, "%s:%s:%s:%s=%ju/%s",
176 return (expanded);
184 char *copy, *expanded, *resolved, *tofree; local
245 expanded = expand_amount(resolved, rule);
248 return (expanded);

Completed in 205 milliseconds

1234