/third_party/python/Lib/ |
H A D | fnmatch.py | 80 STAR = object() 89 if (not res) or res[-1] is not STAR: 90 add(STAR) 156 while i < n and inp[i] is not STAR: 159 # Now deal with STAR fixed STAR fixed ... 160 # For an interior `STAR fixed` pairing, we want to do a minimal 167 assert inp[i] is STAR 172 assert inp[i] is not STAR 174 while i < n and inp[i] is not STAR [all...] |
H A D | token.py | 22 STAR = 16 variable 88 '*': STAR,
|
/third_party/musl/src/regex/ |
H A D | fnmatch.c | 27 #define STAR -5 macro 84 return STAR; in pat_next() 178 case STAR: in fnmatch_internal() 211 case STAR: in fnmatch_internal() 270 if (c == STAR) { in fnmatch_internal() 287 if (c == STAR) continue; in fnmatch_internal()
|
/third_party/python/Lib/test/ |
H A D | test_tokenize.py | 1401 self.assertExactTypeEqual('*', token.STAR) 1979 STAR '*' (1, 24) (1, 25) 1994 STAR '*' (1, 15) (1, 16) 2093 STAR '*' (1, 8) (1, 9) 2097 STAR '*' (1, 12) (1, 13) 2124 STAR '*' (1, 2) (1, 3) 2130 STAR '*' (1, 8) (1, 9)
|
/third_party/python/Include/ |
H A D | token.h | 29 #define STAR 16 macro
|
/third_party/python/Lib/lib2to3/fixes/ |
H A D | fix_apply.py | 59 l_newargs = [pytree.Leaf(token.STAR, "*"), args]
|
H A D | fix_itertools_imports.py | 24 elif child.type == token.STAR:
|
/third_party/python/Parser/ |
H A D | token.c | 25 "STAR", 86 case '*': return STAR; in PyToken_OneChar()
|
/third_party/python/Lib/lib2to3/pgen2/ |
H A D | token.py | 25 STAR = 16 variable
|
/third_party/skia/third_party/externals/swiftshader/src/OpenGL/compiler/ |
H A D | glslang_tab.h | 171 STAR = 374, enumerator
|
H A D | glslang_tab.cpp | 258 STAR = 374, enumerator 764 "EQUAL", "SEMICOLON", "BANG", "DASH", "TILDE", "PLUS", "STAR", "SLASH",
|
H A D | glslang.y | 183 %token <lex> COMMA COLON EQUAL SEMICOLON BANG DASH TILDE PLUS STAR SLASH PERCENT 427 | multiplicative_expression STAR unary_expression {
|
H A D | glslang_lex.cpp | 2289 { return(STAR); }
|
/third_party/skia/third_party/externals/angle2/src/compiler/translator/ |
H A D | glslang_tab_autogen.h | 227 STAR = 428, enumerator
|
H A D | glslang.y | 198 %token <lex> COMMA COLON EQUAL SEMICOLON BANG DASH TILDE PLUS STAR SLASH PERCENT 428 | multiplicative_expression STAR unary_expression {
|
H A D | glslang_tab_autogen.cpp | 316 STAR = 428, enumerator 946 "STAR",
|
H A D | glslang_lex_autogen.cpp | 2079 YY_RULE_SETUP { return STAR; }
|
/third_party/python/Lib/lib2to3/ |
H A D | patcomp.py | 116 if child.type == token.STAR:
|
H A D | fixer_util.py | 451 elif package and n.type == token.STAR:
|
/third_party/glslang/glslang/MachineIndependent/ |
H A D | glslang_tab.cpp.h | 424 STAR = 625, /* STAR */ enumerator
|
H A D | Scan.cpp | 848 case '*': return STAR; in tokenize()
|