Lines Matching refs:token
22 char token[SSIZE]; variable
119 token[sp++] = '\\'; in yylex()
120 token[sp++] = c; in yylex()
123 "quoted string %.20s... too long"), token); in yylex()
125 token[sp] = '\0'; in yylex()
126 yylval = (int)&token[0]; in yylex()
128 error(!FATAL, gettext("missing \" in %.20s"), token); in yylex()
135 getstr(token, SSIZE); in yylex()
136 if (dbg) printf(".\tlex token = |%s|\n", token); in yylex()
137 if ((tp = lookup(deftbl, token, NULL)) != NULL) { in yylex()
142 printf(".\tfound %s|=%s|\n", token, tp->defn); in yylex()
143 } else if ((tp = lookup(keytbl, token, NULL)) == NULL) { in yylex()
144 if (dbg) printf(".\t%s is not a keyword\n", token); in yylex()
232 getstr(token, SSIZE); /* get name */ in define()
234 (void) cstr(token, 1, SSIZE); /* skip the definition too */ in define()
237 p1 = strsave(token); in define()
238 if (cstr(token, 1, SSIZE)) in define()
240 "Unterminated definition at %.20s"), token); in define()
241 p2 = strsave(token); in define()
253 getstr(token, SSIZE); in space()
254 spaceval = strsave(token); in space()
255 if (dbg) printf(".\tsetting space to %s\n", token); in space()
282 if (cstr(token, 0, SSIZE)) in delim()
283 error(FATAL, gettext("Bizarre delimiters at %.20s"), token); in delim()
284 lefteq = token[0]; in delim()
285 righteq = token[1]; in delim()