Home | History | Annotate | Download | only in nawk-20071023

Lines Matching refs:Cell

76 /* Cell:  all information about a variable or constant */
78 typedef struct Cell {
85 struct Cell *cnext; /* ptr to next if chained */
86 } Cell;
91 Cell **tab; /* hash table pointers */
97 extern Cell *nrloc; /* NR */
98 extern Cell *fnrloc; /* FNR */
99 extern Cell *nfloc; /* NF */
100 extern Cell *rstartloc; /* RSTART */
101 extern Cell *rlengthloc; /* RLENGTH */
103 /* Cell.tval values: */
130 /* Node: parse tree is made of nodes, with Cell's at bottom */
151 /* Cell subtypes: csub */