Lines Matching defs:expanded
477 * name name to find, is not expanded any further
575 * The variable name is kept as-is, it is not expanded.
636 * The argument is expanded exactly once and then split into words.
641 char *expanded;
651 expanded = Var_Subst(arg, SCOPE_GLOBAL, VARE_EVAL);
652 if (expanded == var_Error) {
659 varnames = Str_Words(expanded, false);
669 free(expanded);
944 char *expanded = Var_Subst("${.MAKE.EXPORTED:O:u}",
947 varnames = FStr_InitOwn(expanded);
1014 /* Set the variable to the value; the name is not expanded. */
1275 * name name of the variable to find, is expanded once
1295 * name the name to find, is not expanded any further
2194 * expanded) part. In that case, pp points right after the delimiter. The
4134 * the only ones that will be set when dynamic sources are expanded.
4176 * when dynamic sources are expanded.
4566 * expanded in a non-local scope. The result is the text of the
4651 char *expanded;
4653 expanded = Var_Subst(Expr_Str(&expr), scope, expr.emode);
4656 Expr_SetValueOwn(&expr, expanded);
4758 * str The string in which the expressions are expanded.
4821 char *expanded;
4825 expanded = Var_Subst(str->str, scope, emode);
4828 *str = FStr_InitOwn(expanded);