Searched refs:tokentype (Results 1 – 7 of 7) sorted by relevance
/external/python/cpython2/Lib/ |
D | pyclbr.py | 155 for tokentype, token, start, _end, _line in g: 156 if tokentype == DEDENT: 166 tokentype, meth_name, start = g.next()[0:3] 167 if tokentype != NAME: 185 tokentype, class_name, start = g.next()[0:3] 186 if tokentype != NAME: 189 tokentype, token, start = g.next()[0:3] 197 tokentype, token, start = g.next()[0:3] 226 elif tokentype in (NAME, OP) and level == 1: 304 tokentype, token = g.next()[0:2] [all …]
|
/external/one-true-awk/ |
D | maketab.c | 121 enum { TOK_UNKNOWN, TOK_ENUM, TOK_DEFINE } tokentype = TOK_UNKNOWN; in main() local 139 if (tokentype != TOK_ENUM) { in main() 143 tokentype = TOK_DEFINE; in main() 144 } else if (tokentype != TOK_UNKNOWN) { in main() 148 if (tokentype != TOK_DEFINE) { in main() 153 tokentype = TOK_ENUM; in main() 156 tokentype = TOK_UNKNOWN; in main() 160 tokentype = TOK_UNKNOWN; in main()
|
/external/python/cpython3/Lib/ |
D | pyclbr.py | 200 for tokentype, token, start, _end, _line in g: 201 if tokentype == DEDENT: 211 tokentype, func_name, start = next(g)[0:3] 212 if tokentype != NAME: 228 tokentype, class_name, start = next(g)[0:3] 229 if tokentype != NAME: 232 tokentype, token, start = next(g)[0:3] 239 tokentype, token, start = next(g)[0:3] 267 elif tokentype in (NAME, OP) and level == 1: 350 tokentype, token = next(g)[0:2] [all …]
|
/external/fonttools/Lib/fontTools/misc/ |
D | psLib.py | 106 tokentype = 'do_special' 109 tokentype = 'do_comment' 113 tokentype = 'do_string' 120 tokentype = 'do_hexstring' 130 tokentype = 'do_literal' 133 tokentype = '' 141 return tokentype, token 199 tokentype, token = getnexttoken() 202 if tokentype: 203 handler = getattr(self, tokentype)
|
/external/antlr/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | CommonTokenStream.as | 45 /** Map<tokentype, channel> to override some Tokens' channel numbers */ 48 /** Set<tokentype>; discard any tokens with this type */
|
/external/antlr/runtime/ObjC/Framework/ |
D | Lexer.m | 254 … an int because it sometimes is used in the generated parser to compare lookahead with a tokentype.
|
/external/angle/tools/flex-bison/third_party/skeletons/ |
D | c.m4 | 354 enum ]b4_api_prefix[tokentype
|