Searched refs:P_use (Results 1 - 10 of 10) sorted by relevance
/ast/src/cmd/nmake/ |
H A D | dump.c | 104 !(r->property & (P_accept|P_after|P_always|P_archive|P_before|P_command|P_force|P_foreground|P_functional|P_ignore|P_immediate|P_implicit|P_joint|P_local|P_make|P_multiple|P_operator|P_parameter|P_read|P_repeat|P_target|P_terminal|P_use|P_virtual)) && !((r->property & P_attribute) && r->attribute) && !r->semaphore)) 218 if (r->property & P_use) 397 if ((r->property & (P_metarule|P_use)) 398 == P_use) sfputr(sp, internal.use->name, ' ');
|
H A D | rule.c | 670 else if (x->property & P_use) 807 if ((r->property & P_use) && !(state.frame = r->active)) 906 if (x && (a->attribute & x->attribute & ~internal.ignore->attribute) && ((r->property & (P_attribute|P_use)) != P_attribute || r == internal.accept || r == internal.ignore || r == internal.retain)) return 1; 946 if (a == internal.use) return n & P_use; 1037 if (from == to || to->status != NOTYET && (to->status != UPDATE || !(from->property & P_use))) 1075 to->property |= from->property & (P_accept|P_immediate|P_target|P_use); 1102 if (from->attribute && from != internal.accept && from != internal.ignore && from != internal.retain && ((to->property & (P_attribute|P_use)) != P_attribute || to == internal.accept || to == internal.ignore || to == internal.retain)) 1109 if (from->attribute && from != internal.accept && from != internal.ignore && from != internal.retain && ((to->property & (P_attribute|P_use)) != P_attribute || to == internal.accept || to == internal.ignore || to == internal.retain)) 1198 to->property &= ~(from->property & (P_accept|P_after|P_always|P_archive|P_before|P_command|P_dontcare|P_force|P_functional|P_ignore|P_immediate|P_implicit|P_local|P_make|P_multiple|P_parameter|P_repeat|P_target|P_terminal|P_use|P_virtual)); 1490 ATTR(use, ".USE", P_use); [all...] |
H A D | make.c | 349 if (r->property & P_use) 405 else if ((r2->property & (P_make|P_local|P_use)) == (P_make|P_local)) 413 else if ((r2->property & (P_after|P_use)) == P_after) 419 else if ((r2->property & (P_before|P_use)) == P_before) 724 else if ((r1->property & (P_make|P_local|P_use)) == (P_make|P_local)) 732 else if ((r1->property & (P_after|P_use)) == P_after) 738 else if ((r1->property & (P_before|P_use)) == P_before)
|
H A D | state.c | 175 if (v->time == r->time || accept || r->view == view || (r->property & (P_state|P_use|P_virtual)) || state.believe && view >= (state.believe - 1)) 191 if (r->property & P_use) 337 if (!tstbit(*b, i = (r->property & (P_statevar|P_use|P_virtual)) && state.targetview > 0 ? state.targetview : r->view) && (!s || !s->time || (r->property & P_statevar) || !(k = statetimeq(r, s)))) 339 if (!(r->property & (P_statevar|P_use|P_virtual)) && !(r->dynamic & D_bound) && !(r->mark & M_bind) && (s && s->time || !s && state.compile >= COMPILED)) 361 if (!(r->property & (P_statevar|P_use|P_virtual)) || state.targetview < 0)
|
H A D | parse.c | 2352 att->rule.property |= P_use; 2395 if (r->property & P_use) 2577 property |= r->property & (P_metarule|P_use); 2693 if ((set.rule.property & P_use) && (!(r->property & P_attribute) || !r->attribute)) 2694 r->property |= P_use; 2727 if (!(r->property & P_use))
|
H A D | variable.c | 88 else if (sp && (all || ((x->property & P_state) || x->scan || (y = staterule(PREREQS, x, NiL, 0)) && y->scan || !r->scan) && !(x->property & (P_use|P_virtual)) && (!(x->property & P_ignore) || (x->property & P_parameter)) && (!(x->property & P_dontcare) || x->time)))
|
H A D | make.h | 93 #define notfile(r) (((r)->property&(P_attribute|P_functional|P_make|P_operator|P_state|P_use|P_virtual))||((r)->dynamic&D_scope)||(r)->semaphore||((r)->property&P_dontcare)&&((r)->dynamic&D_bound)&&!(r)->time) 314 #define P_use (1L<<29) /* rule is a .USE script */ macro
|
H A D | metarule.c | 50 r->property |= (P_metarule|P_use);
|
H A D | command.c | 128 if (r->active && (r->active->parent->target->property & P_archive) && !(r->property & (P_after|P_before|P_use))) 539 else if ((r->property & (P_make|P_local|P_use)) == (P_make|P_local) && r->action)
|
H A D | object.c | 1821 if ((r->property & P_attribute) && (r->attribute && !(r->property & P_use) && !streq(r->name, internal.attribute->name) || r->scan && !streq(r->name, internal.scan->name)))
|
Completed in 46 milliseconds