Lines Matching refs:tokidx
48 static int tokidx; variable
118 tokidx = 0; in reset_scanner()
234 if ((tokidx + 1) >= toksz) { in add_tok()
238 tokidx = 0; in add_tok()
244 token[tokidx++] = (char)c; in add_tok()
245 token[tokidx] = 0; in add_tok()
370 tokidx = 0; in get_symbol()
394 tokidx = 0; in get_symbol()
408 int len = tokidx; in consume_token()
411 tokidx = 0; in consume_token()
471 tokidx = 0; in consume_token()
544 if (tokidx) { in yylex()
586 if (strchr(" \t\n;()<>,\"", c) && (tokidx != 0)) { in yylex()