Searched refs:VAR (Results 1 - 6 of 6) sorted by relevance
/ast/src/cmd/ksh93/tests/ |
H A D | variables.sh | 496 print 'print ${VAR}' > $tmp/script 497 unset VAR 498 VAR=new $tmp/script > $tmp/out 501 [[ ! $VAR ]] || err_exit "previously unset environment variable set after script, expected '', got '$VAR'" 502 unset VAR 503 VAR=old 504 VAR=new $tmp/script > $tmp/out 507 [[ $VAR == old ]] || err_exit "previously set local variable changed after script, expected 'old', got '$VAR'" [all...] |
H A D | attributes.sh | 130 print 'print VAR=$VAR' > $tmp/script 131 typeset -L70 VAR=var 133 [[ $(< $tmp/script.1) == VAR= ]] || err_exit 'typeset -L should not be inherited'
|
/ast/src/cmd/nmake/ |
H A D | scan.c | 764 u = staterule(VAR, NiL, t, 1); 906 u = staterule(VAR, NiL, w, 1); 1671 u = staterule(VAR, NiL, (char*)b, 1);
|
H A D | state.c | 291 case VAR: 739 r = staterule(VAR, NiL, (char*)s, 1); 840 if (state.maxview && (r->property & P_statevar) && (s = staterule(VAR, r, NiL, 0)))
|
H A D | make.h | 167 * VAR and RULE must not change -- the rest must be in sequence 170 #define VAR 0 /* state var from var in staterule() */ macro 171 #define CONSISTENT VAR /* consistency check bits */
|
H A D | parse.c | 2222 if (r = staterule(VAR, NiL, s, 0)) 2806 if (state.localview && (!(r = staterule(VAR, NiL, s, 0)) || !(r->property & P_parameter)))
|
Completed in 62 milliseconds