Lines Matching refs:t

49 	Shnode_t *t;  in sh_trestore()  local
51 t = r_tree(shp); in sh_trestore()
52 return(t); in sh_trestore()
61 register Shnode_t *t=0; in r_tree() local
63 return(t); in r_tree()
69 t = getnode(shp->stk,parnod); in r_tree()
70 t->par.partre = r_tree(shp); in r_tree()
73 t = getnode(shp->stk,comnod); in r_tree()
74 t->tre.tretyp = type; in r_tree()
75 r_comarg(shp,(struct comnod*)t); in r_tree()
79 t = getnode(shp->stk,forknod); in r_tree()
80 t->fork.forkline = sfgetu(infile); in r_tree()
81 t->fork.forktre = r_tree(shp); in r_tree()
82 t->fork.forkio = r_redirect(shp); in r_tree()
85 t = getnode(shp->stk,ifnod); in r_tree()
86 t->if_.iftre = r_tree(shp); in r_tree()
87 t->if_.thtre = r_tree(shp); in r_tree()
88 t->if_.eltre = r_tree(shp); in r_tree()
91 t = getnode(shp->stk,whnod); in r_tree()
92 t->wh.whinc = (struct arithnod*)r_tree(shp); in r_tree()
93 t->wh.whtre = r_tree(shp); in r_tree()
94 t->wh.dotre = r_tree(shp); in r_tree()
100 t = getnode(shp->stk,lstnod); in r_tree()
101 t->lst.lstlef = r_tree(shp); in r_tree()
102 t->lst.lstrit = r_tree(shp); in r_tree()
105 t = getnode(shp->stk,arithnod); in r_tree()
106 t->ar.arline = sfgetu(infile); in r_tree()
107 t->ar.arexpr = r_arg(shp); in r_tree()
108 t->ar.arcomp = 0; in r_tree()
109 if((t->ar.arexpr)->argflag&ARG_RAW) in r_tree()
110 t->ar.arcomp = sh_arithcomp(shp,(t->ar.arexpr)->argval); in r_tree()
113 t = getnode(shp->stk,fornod); in r_tree()
114 t->for_.forline = 0; in r_tree()
116 t->for_.forline = sfgetu(infile); in r_tree()
117 t->for_.fortre = r_tree(shp); in r_tree()
118 t->for_.fornam = r_string(shp->stk); in r_tree()
119 t->for_.forlst = (struct comnod*)r_tree(shp); in r_tree()
122 t = getnode(shp->stk,swnod); in r_tree()
123 t->sw.swline = 0; in r_tree()
125 t->sw.swline = sfgetu(infile); in r_tree()
126 t->sw.swarg = r_arg(shp); in r_tree()
128 t->sw.swio = r_redirect(shp); in r_tree()
130 t->sw.swio = 0; in r_tree()
131 t->sw.swlst = r_switch(shp); in r_tree()
138 t = getnode(shp->stk,functnod); in r_tree()
139 t->funct.functloc = -1; in r_tree()
140 t->funct.functline = sfgetu(infile); in r_tree()
141 t->funct.functnam = r_string(shp->stk); in r_tree()
153 t->funct.functtre = r_tree(shp); in r_tree()
154 t->funct.functstak = slp; in r_tree()
155 t->funct.functargs = (struct comnod*)r_tree(shp); in r_tree()
161 t = getnode(shp->stk,tstnod); in r_tree()
162 t->tst.tstline = sfgetu(infile); in r_tree()
164 t->lst.lstlef = r_tree(shp); in r_tree()
167 t->lst.lstlef = (Shnode_t*)r_arg(shp); in r_tree()
169 t->lst.lstrit = (Shnode_t*)r_arg(shp); in r_tree()
172 if(t) in r_tree()
173 t->tre.tretyp = type; in r_tree()
174 return(t); in r_tree()