Home
last modified time | relevance | path

Searched refs:tok_type (Results 1 – 4 of 4) sorted by relevance

/external/iproute2/misc/
Dssfilter.y31 static int tok_type = -1; variable
235 tok_type = DCOND; in yylex()
239 tok_type = SCOND; in yylex()
243 tok_type = DPORT; in yylex()
247 tok_type = SPORT; in yylex()
251 tok_type = FWMARK; in yylex()
277 tok_type = AUTOBOUND; in yylex()
280 if (tok_type == FWMARK) { in yylex()
288 yylval = (void*)parse_hostcond(curtok, tok_type == SPORT || tok_type == DPORT); in yylex()
/external/python/cpython2/Lib/
Dtokenize.py207 tok_type, token, start, end, line = t
208 if tok_type == ENDMARKER:
210 if tok_type == INDENT:
213 elif tok_type == DEDENT:
217 elif tok_type in (NEWLINE, NL):
228 if tok_type in (NEWLINE, NL):
/external/python/cpython2/Lib/lib2to3/pgen2/
Dtokenize.py202 tok_type, token, start, end, line = t
206 if tok_type in (NEWLINE, NL):
/external/jsmn/
Djsmn_test.c28 #define TOKEN_EQ(t, tok_start, tok_end, tok_type) \ argument
31 && (t).type == (tok_type))