Lines Matching refs:sc_tokid
149 static int sc_tokid; /* scanner - token id */ variable
163 return (sc_tokid = Specials[i].value); in parse_token()
202 sc_tokid = EOF; in token()
213 return (sc_tokid); in token()
243 return ((sc_tokid = NUMBER)); in token()
251 return ((sc_tokid = DOT)); in token()
253 return ((sc_tokid = PLUS)); in token()
255 return ((sc_tokid = SLASH)); in token()
257 return ((sc_tokid = JUNK)); in token()
279 plonk(sc_tokid); in expect()
338 if (sc_tokid == NEXT) { in plus()
375 plonk(sc_tokid); in plus()
414 if (sc_tokid == AM || sc_tokid == PM) { in tod()
418 if (sc_tokid == PM) { in tod()
434 if ((sc_tokid == EOF || sc_tokid == PLUS || sc_tokid == NEXT) && in tod()
507 switch (sc_tokid) { in month()
528 mon = sc_tokid - JAN; in month()
543 wday = sc_tokid - SUN; in month()
566 if (sc_tokid == SLASH || sc_tokid == DOT) { in month()
569 sep = sc_tokid; in month()
643 if (sc_tokid == EOF) { in parsetime()
647 else if (sc_tokid != PLUS && sc_tokid != NEXT) in parsetime()
648 plonk(sc_tokid); in parsetime()