/ast/src/cmd/nmake/ |
H A D | dump.c | 46 s = (r->property & P_state) || (r->dynamic & D_alias) ? r->name : unbound(r); 81 if (!(r->property & P_state) && r->uname) 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)) 110 if ((r->property & P_staterule) && isaltstate(r->name)) 114 if (!(r->property & P_attribute)) 130 if (r->property & P_state) 132 if (r->property & P_staterule) 137 else if (r->property & P_statevar) 155 if (r->property [all...] |
H A D | mam.c | 98 if (r->property & P_state) 109 a = ((r->property & P_target) || !state.user) ? unbound(r) : (state.mam.regress || state.expandview) ? r->name : localview(r); 144 , (r->property & P_archive) ? " archive" : null 147 , (r->property & P_state) ? " state" : null 170 if ((r->property & (P_joint|P_target)) == (P_joint|P_target) && r->prereqs->rule->prereqs->rule == r && mampush(sp, r->prereqs->rule, flags|P_joint|P_virtual) && !(r->prereqs->rule->property & P_target)) 176 r->prereqs->rule->property |= P_target; 184 , (r->property & P_dontcare) ? " dontcare" : null 185 , (r->property & P_ignore) ? " ignore" : null 187 , (flags & P_virtual) && !(r->property [all...] |
H A D | make.c | 30 #define PREVIEW(r,x) do{if(r->preview>x->preview&&(r->scan&&r->scan==x->scan||!r->scan&&!((r->property|x->property)&P_virtual)))r->preview=x->preview;}while(0) 157 if (r == a && r->time && (!(r->property & P_target) || !(r->property & (P_archive|P_command|P_make)))) 181 if (!(u->property & P_state)) 240 else if (!(u->property & P_dontcare)) 247 if ((r->property & P_attribute) || (r->property & P_functional) && !(r->active->stem = arg)) 249 if (!state.accept && !(r->property & P_accept)) 263 * p temporarily or'd into r->property 1332 makeafter(register Rule_t* r, Flags_t property) argument [all...] |
H A D | variable.c | 53 else if ((x = staterule(PREREQS, r, NiL, 0)) && (x->property & P_implicit)) 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))) 91 if (all || ((x->property & P_state) != 0) == dostate) 158 if ((r->property & (P_functional|P_virtual)) && r->status != UPDATE) 206 if (state.mam.statix && (state.never || state.frame->target && !(state.frame->target->property & P_always))) 231 sfprintf(internal.val, "%s=%s", v->name, (v->property 794 localvar(Sfio_t* sp, register Var_t* v, char* value, int property) argument [all...] |
H A D | state.c | 173 if (s && (op == RULE && (s->event >= v->event && s->event || !v->time && (v->property & P_force)) || op == PREREQS && s->time >= v->time)) 175 if (v->time == r->time || accept || r->view == view || (r->property & (P_state|P_use|P_virtual)) || state.believe && view >= (state.believe - 1)) 177 if (r->property & P_state) 179 if (r->property & P_statevar) 185 if (v->property & P_parameter) 186 s->property |= P_parameter; 191 if (r->property & P_use) 204 if (v->property & P_force) 205 s->property |= P_force; 207 s->property [all...] |
H A D | command.c | 47 #define MAMNAME(r) ((state.mam.dynamic||(r)!=state.frame->target||((r)->property&P_after))?mamname(r):(char*)0) 109 if (r->property & P_state) 117 if (r->property & P_archive) 128 if (r->active && (r->active->parent->target->property & P_archive) && !(r->property & (P_after|P_before|P_use))) 145 if (!(r->property & P_virtual)) 160 r->status = r->time ? EXISTS : (r->property & P_dontcare) ? IGNORE : FAILED; 190 x->property = r->property & (P_make|P_operator); 191 if (x->property [all...] |
H A D | parse.c | 78 #define PUSHLOCAL(p) do{for(p=pp->local;p;p=p->next)if(!(p->newv.property&V_scope))p->bucket->value=(char*)p->oldv;}while(0) 79 #define POPLOCAL(p) do{for(p=pp->local;p;p=p->next)if(!(p->newv.property&V_scope))p->bucket->value=(char*)&p->newv;}while(0) 288 p->newv.property &= ~(V_readonly|V_scope); 289 p->newv.property |= (v->property & (V_auxiliary|V_scan)) | (flags & V_scope); 290 if (!p->newv.value || (p->newv.property & V_import)) 294 p->newv.property &= ~V_import; 295 p->newv.property |= V_free; 450 if (!(v->property & V_import) && v->value && strlen(p) <= v->length) 454 if (v->property 2567 int property; local [all...] |
H A D | object.c | 37 * property, dynamic and status field bit values are permanently fixed 74 * 1 # property 82 * 1 # property 234 long property; /* stable properties */ member in struct:OLD_rule_s 259 long property; /* static and dynamic */ member in struct:OLD_var_s 422 if (h || (r->property & P_internal)) 494 if ((r->property & P_state) && !r->view && !(r->dynamic & (D_garbage|D_lower))) 545 if (r->property & P_internal) 561 if (!(r->property & P_state)) 569 if (r->uname && !(r->property 690 unsigned long property; local [all...] |
H A D | metarule.c | 50 r->property |= (P_metarule|P_use); 51 r->property &= ~(P_state|P_staterule|P_statevar); 69 if (r && (!(r->property & P_metarule) || !r->action && !r->uname)) 99 r->property |= P_readonly; 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))) 430 if ((m = metarule(q->rule->name, p->rule->name, 0)) && (!(r->property & P_terminal) || (m->property & P_terminal)) && !(m->property & f)) 450 if ((s = bindfile(NiL, t, 0)) && s->status != UPDATE && (s->time || (s->property [all...] |
H A D | rule.c | 245 r->property |= P_state|P_staterule; 250 r->property |= P_state|P_statevar; 259 message((-13, "adding %s %s", (r->property & P_state) ? "state variable" : "atom", r->name)); 274 if (r->property & (P_functional|P_metarule|P_operator|P_repeat|P_state)) 299 if ((r->property & (P_joint|P_target)) == (P_joint|P_target)) 332 if (!(x->property & P_multiple)) 339 if (r->property & P_state) 376 if (r->property & P_state) 403 if (r->property & (P_attribute|P_readonly)) 413 if (x->property 1015 hasafter(register Rule_t* r, register Flags_t property) argument [all...] |
H A D | scan.c | 77 } property; /* properties */ member in struct:Action_s 78 int attrprop; /* attribute|property mods */ 132 r->property |= P_attribute; 280 if (!u || !(u->property & P_attribute)) 287 else if (u->attribute && !(u->property & P_ignore)) 295 else if (m = u->property & (P_accept|P_after|P_always|P_archive|P_before|P_command|P_dontcare|P_force|P_foreground|P_functional|P_ignore|P_implicit|P_local|P_make|P_multiple|P_parameter|P_repeat|P_terminal|P_virtual)) 299 a->property.clear |= m; 301 a->property.set |= m; 793 u->property |= P_parameter; 794 v->property | [all...] |
H A D | trap.c | 305 maketop(r, (P_dontcare|P_force|P_ignore|P_repeat)|((r->property & P_make)?0:P_foreground), s); 313 if (!(r->property & P_functional)) 315 maketop(r, (P_dontcare|P_force|P_ignore|P_repeat)|((r->property & P_make)?0:P_foreground), s); 316 if (r->property & P_functional)
|
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)); 371 if (!(r->property & P_state)) 387 if (!r->view && ((state.questionable & 0x00000800) || !(r->property & P_target)) && *s == '/' && (strncmp(s, internal.pwd, internal.pwdlen) || *(s + internal.pwdlen) != '/')) 720 if (!(x->dynamic & D_source) || (x->property & P_target)) 790 if (r->property & P_state) 898 if ((r->property & P_state) || (r->property & P_virtual) && !(flags & BIND_FORCE)) 1001 if (!a || !(a->property & P_force)) 1069 if (r && r->active && (r->active->parent->target->property & P_archive) && !(r->dynamic & D_membertoo)) 1122 if (c && (d->property [all...] |
H A D | main.c | 240 if ((state.mam.level = level) > 0 && !state.hold && (r = internal.error) && (r->property & (P_functional|P_target)) == (P_functional|P_target) && !state.compileonly && !state.interrupt && (m = stakptr(0)) && (n = staktell()) > 0) 438 v->property &= ~V_import; 439 v->property |= V_free; 518 v->property &= ~V_import; 520 v->property |= V_readonly; 879 if (!state.hold && (r = internal.error) && (r->property & (P_target|P_functional)) == P_target)
|
H A D | read.c | 58 setvar(external.rules, state.rules, 0)->property |= V_compiled; 106 setvar(external.file, r->name, 0)->property |= V_compiled; 471 if ((type & COMP_DONTCARE) || (r->property & P_dontcare)) 473 r->property |= P_dontcare;
|
H A D | archive.c | 164 if (r->property & P_state)
|
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) 114 #define viewable(r) ((r->property&P_state)&&*r->name=='(') 129 #define freevar(v) do{(v)->property&=(V_free|V_import);*((char**)v)=internal.freevars;internal.freevars=(char*)(v);}while(0) 280 * rule.property flags 382 * var.property flags 398 #define V_append (1<<11) /* cmd line += property or op */ 506 Flags_t property; /* stable properties */ member in struct:Rule_s 892 Flags_t property; /* static and dynamic */ member in struct:Var_s
|
H A D | expand.c | 1777 if (!r || !r->time || (r->property & P_state) || r->status == IGNORE) 1853 if (state.mam.statix && r && !(r->property & P_state) && !(r->dynamic & D_alias)) 2117 sfputr(xp, (r && !(r->property & P_state) && !(r->dynamic & D_alias)) ? unbound(r) : s, -1); 2514 if ((r->property & (P_parameter|P_statevar)) == P_statevar && (v = varstate(r, 0))) 2608 if (tst != 'F' && dobind || (r->property & (P_target|P_terminal)) == P_terminal) 2624 if (r->property & P_target) 2626 if (r->action || (r->property & (P_archive|P_command)) || !(state.questionable & 0x00004000) && (r->dynamic & D_dynamic)) 2629 if (z->rule->property & P_use) break; 2635 f = x ? (x->property & P_implicit) : 0; 2640 if (metamatch(stem, unbound(r), z->rule->name) && (!(r->property [all...] |
H A D | Makerules.mk | 1032 * target property metarules
|
/ast/src/lib/libtk/generic/ |
H A D | tkSend.c | 46 * property "InterpRegistry" on the root window of the display. 62 * locked when the property was read in. */ 63 int modified; /* Non-zero means that the property has 66 unsigned long propLength; /* Length of the property, in bytes. */ 67 char *property; /* The contents of the property, or NULL member in struct:NameRegistry 71 int allocedByX; /* Non-zero means must free property with 117 * even mapped, with one property, "Comm". When a command is sent to 118 * an interpreter, the command is appended to the comm property of the 121 * to the comm property 582 char *property; local [all...] |
H A D | tkSelect.h | 85 Atom property; /* Property where selection will appear. */ member in struct:TkSelRetrievalInfo
|
H A D | tkTest.c | 1116 char *property, *p, *end; 1133 property = NULL; 1137 &bytesAfter, (unsigned char **) &property); 1140 for (p = property; (p-property) < length; p++) { 1145 Tcl_SetResult(interp, property, TCL_VOLATILE); 1147 if (property != NULL) { 1148 XFree(property); 1104 char *property, *p, *end; local
|
/ast/src/lib/libtk/unix/ |
H A D | tkUnixSelect.c | 29 * (target, property). This either 30 * points to a retrieved property (for 65 * Largest property that we'll accept when sending or receiving the 145 retr.property = selection; 163 retr.property, retr.winPtr->window, CurrentTime); 205 * This procedure is invoked when property-change events 209 * the property containing a part of the selection. 215 * If the property that is receiving the selection was just 217 * placed in the property, until eventually there's no more 237 * See if this event announces the deletion of a property bein 664 Atom target, property, type; local [all...] |
/ast/src/lib/libast/port/ |
H A D | astlicense.c | 936 copy(&tmp, "intellectual property rights.", -1);
|
/ast/src/cmd/INIT/ |
H A D | proto.c | 2290 copy(&tmp, "intellectual property rights.", -1);
|