Searched refs:unbound (Results 1 - 12 of 12) sorted by relevance
/ast/src/cmd/nmake/ |
H A D | variable.c | 31 #define BINDING(r,f) (((f)&VAL_UNBOUND)?unbound(r):state.localview?localview(r):(r)->name) 97 sfputr(sp, (op & VAL_UNBOUND) ? unbound(x) : state.localview ? localview(x) : ((x->dynamic & D_alias) ? x->uname : x->name), -1); 394 val = unbound(r);
|
H A D | bind.c | 212 message((-2, "%s %s is also specified as %s", (r->property & P_archive) ? "archive" : "directory", unbound(r), x->name)); 676 message((-2, "%s is also specified as %s", unbound(r), unbound(x))); 759 debug((-5, "no rebind for %s or %s", unbound(r), unbound(x))); 903 r = makerule(unbound(r)); 1475 message((-2, "%s not aliased to %s", unbound(r), unbound(x))); 1486 * saving the unbound name 1827 if (*(t = unbound( [all...] |
H A D | metarule.c | 369 u = unbound(r); 403 if (metamatch(t, unbound(q->rule), v->rule->name) && streq(t, stem) && (m = metarule(v->rule->name, p->rule->name, 0)) && (!(r->property & P_terminal) || (m->property & P_terminal))) 692 if (meta && (state.targetcontext || state.targetprefix) && (t = strrchr(u = unbound(r), '/')))
|
H A D | mam.c | 109 a = ((r->property & P_target) || !state.user) ? unbound(r) : (state.mam.regress || state.expandview) ? r->name : localview(r);
|
H A D | make.c | 457 r3name = unbound(r3); 540 if ((r3 == r || (r->property & P_target) && !(r3->property & P_target)) && (!(r->dynamic & D_alias) || r3name == unbound(r))) 650 error(1, "%s has been replaced by an older version", unbound(r)); 750 if ((r2 = associate(internal.require_p, r1, NiL, NiL)) && (v = call(r2, unbound(r1)))) 830 if ((r2 = metaget(r, r->active, stem, &r4)) && !(state.questionable & 0x00100000) && ((state.questionable & 0x00200000) || !(r->property & P_implicit)) && strchr(unbound(r), '/') && !strchr(r4->name, '/')) 897 sfprintf(tmp, "%s.%s", internal.joint->name, unbound(r2));
|
H A D | dump.c | 46 s = (r->property & P_state) || (r->dynamic & D_alias) ? r->name : unbound(r); 288 sfputr(sp, "unbound", -1); 730 if (!(r = getrule(unbound(r))))
|
H A D | expand.c | 263 * U unbound name 1629 if ((r = (Rule_t*)hashget(tab, unbound(q->rule))) && (r->mark & M_MUST)) 1835 message((-2, "pathop('%c',%s==%s): bound shorter than unbound", *op, r->name, r->uname)); 1854 s = unbound(r); 2114 * return unbound name 2117 sfputr(xp, (r && !(r->property & P_state) && !(r->dynamic & D_alias)) ? unbound(r) : s, -1); 2640 if (metamatch(stem, unbound(r), z->rule->name) && (!(r->property & P_terminal) || (z->rule->property & P_terminal)) && !(z->rule->property & f) && (x = metainfo('I', z->rule->name, NiL, 0)))
|
H A D | rule.c | 1156 reason((1, "%s alias has changed to %s", unbound(from), unbound(to)));
|
H A D | make.h | 325 #define D_alias (1<<0) /* more than one unbound name */ 416 #define VAL_UNBOUND (1<<4) /* unbound name */ 480 * statevar data, staterule sync time and unbound rule name -- shared in rule.u1 486 #define unbound(r) ((r)->uname?(r)->uname:(r)->name) macro 495 char* u_uname; /* unbound name */
|
H A D | state.c | 327 rul = unbound(r);
|
H A D | command.c | 543 if (state.targetcontext && *(u = unbound(job->target)) != '/' && (s = strrchr(u, '/')))
|
H A D | object.c | 69 * 1 @ name unbound name 223 char* u_uname; /* unbound name */ 558 * make sure the unbound rule name is compiled 1060 putstring(object.pp, unbound(r), 0);
|
Completed in 42 milliseconds