HomeSort by: relevance | last modified time | path
    Searched refs:Var_Subst (Results 1 - 19 of 19) sorted by relevancy

  /src/usr.bin/make/unit-tests/
deptgt-end-jobs.mk 21 # The Var_Subst in Compat_RunCommand looks suspicious.
22 # The Var_Subst in JobSaveCommand looks suspicious.
34 # The Var_Subst in Compat_RunCommand looks suspicious.
35 # The Var_Subst in JobSaveCommand looks suspicious.
deptgt-end.mk 13 # The Var_Subst in Compat_RunCommand looks suspicious.
14 # The Var_Subst in JobSaveCommand looks suspicious.
33 # The Var_Subst in Compat_RunCommand looks suspicious.
34 # The Var_Subst in JobSaveCommand looks suspicious.
varname-make_print_var_on_error.mk 14 # XXX: As of 2021-02-04, PrintOnError calls Var_Subst with SCOPE_GLOBAL, which
varname-make_print_var_on_error-jobs.mk 16 # XXX: As of 2021-02-04, PrintOnError calls Var_Subst with SCOPE_GLOBAL, which
varparse-errors.mk 6 # Var_Subst, collecting typical and not so typical use cases.
10 # Var_Subst
53 # Var_Subst actually makes a difference, preventing "a plethora of messages".
varmod.mk 78 # See Var_Parse, where it calls Var_Subst.
86 # See Var_Parse, where it calls Var_Subst.
93 # See Var_Parse, where it calls Var_Subst.
opt-jobs-no-action.mk 26 # The '$$' is handled by Var_Subst in ParseDependencyLine.
directive-undef.mk 86 # in Var_Parse and Var_Subst is not done properly.
varmod-match-escape.mk 37 # If ParseModifier_Match had used the same parsing algorithm as Var_Subst,
varmod-loop.mk 85 # Var_Subst, which replaces each '$$' with a single '$'.
  /src/usr.bin/make/
main.c 816 char *mode = Var_Subst("${.MAKE.MODE:tl}", SCOPE_GLOBAL, VARE_EVAL);
839 char *evalue = Var_Subst(varname, SCOPE_GLOBAL, VARE_EVAL);
846 char *evalue = Var_Subst(expr, SCOPE_GLOBAL, VARE_EVAL);
872 value = Var_Subst(expr, SCOPE_GLOBAL, VARE_EVAL);
1216 value = Var_Subst("${.MAKE.JOBS}", SCOPE_GLOBAL, VARE_EVAL);
1251 vpath = Var_Subst("${VPATH}", SCOPE_CMDLINE, VARE_EVAL);
1287 char *prefs = Var_Subst("${.MAKE.MAKEFILE_PREFERENCE}",
1494 makeDependfile = Var_Subst("${.MAKE.DEPENDFILE}",
2115 errorVarsValues = Var_Subst(
2149 flags = Var_Subst(
    [all...]
meta.c 323 mp = Var_Subst(cmd, gn, VARE_EVAL);
478 char *mp = Var_Subst("${" MAKE_META_PREFIX "}", gn, VARE_EVAL);
614 metaBailiwickStr = Var_Subst("${.MAKE.META.BAILIWICK:O:u:tA}",
623 metaIgnorePathsStr = Var_Subst("${" MAKE_META_IGNORE_PATHS ":O:u:tA}",
771 meta_prefix = Var_Subst("${" MAKE_META_PREFIX "}",
959 pm = Var_Subst(expr, gn, VARE_EVAL);
978 fm = Var_Subst(fname, gn, VARE_EVAL);
1036 s = Var_Subst(
1506 cmd = Var_Subst(cmd, gn, VARE_EVAL_DEFINED);
parse.c 190 VAR_SUBST, /* := */
664 xmsg = Var_Subst(umsg, SCOPE_CMDLINE, VARE_EVAL);
1748 type = VAR_SUBST;
1855 if (op != VAR_SUBST && strchr(uvalue, '$') != NULL) {
1856 char *parsedValue = Var_Subst(uvalue,
1883 evalue = Var_Subst(uvalue, scope,
1918 * Especially for VAR_SUBST and VAR_SHELL this can differ from the literal
1933 else if (op == VAR_SUBST)
2292 all_files = Var_Subst(file, SCOPE_CMDLINE, VARE_EVAL);
2335 value = Var_Subst(value, SCOPE_CMDLINE, VARE_EVAL)
    [all...]
for.c 196 items = Var_Subst(p, SCOPE_GLOBAL, VARE_EVAL);
var.c 96 * Var_Subst Substitute all expressions in a string.
197 * The variable is currently being accessed by Var_Parse or Var_Subst.
651 expanded = Var_Subst(arg, SCOPE_GLOBAL, VARE_EVAL);
683 * local scope, skip it, else we can get Var_Subst
718 val = Var_Subst(expr, scope, VARE_EVAL);
826 xvarnames = Var_Subst("${.MAKE.EXPORTED:O:u}", SCOPE_GLOBAL,
867 char *xvarnames = Var_Subst(uvarnames, SCOPE_GLOBAL, VARE_EVAL);
944 char *expanded = Var_Subst("${.MAKE.EXPORTED:O:u}",
976 char *filtered = Var_Subst(expr, SCOPE_GLOBAL, VARE_EVAL);
1714 s = Var_Subst(args->body, args->scope, args->emode)
    [all...]
make.h 958 * TODO: Document what Var_Parse and Var_Subst return in this mode.
1047 char *Var_Subst(const char *, GNode *, VarEvalMode);
job.c 1113 * XXX: This Var_Subst is only intended to expand the dynamic
1155 char *xcmd = Var_Subst(cmd, job->node, VARE_EVAL);
2090 targPrefix = Var_Subst("${.MAKE.JOB.PREFIX}",
make.c 449 gn->name = Var_Subst(gn->uname, pgn, VARE_EVAL);
suff.c 1346 expanded = Var_Subst(cgn->name, pgn, VARE_EVAL);

Completed in 170 milliseconds