Home
last modified time | relevance | path

Searched refs:sliceop (Results 1 – 8 of 8) sorted by relevance

/external/python/cpython2/Include/
Dgraminit.h72 #define sliceop 325 macro
/external/python/cpython2/Lib/
Dsymbol.py82 sliceop = 325 variable
/external/python/cpython2/Grammar/
DGrammar113 subscript: '.' '.' '.' | test | [test] ':' [test] [sliceop]
114 sliceop: ':' [test]
/external/python/cpython2/Lib/lib2to3/
DGrammar.txt135 subscript: test | [test] ':' [test] [sliceop]
136 sliceop: ':' [test]
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/
DPython.g343 | test (COLON (test)? (sliceop)?)?
344 | COLON (test)? (sliceop)?
347 sliceop: COLON (test)?
/external/python/cpython2/Lib/compiler/
Dtransformer.py351 def sliceop(self, nodelist): member in Transformer
1325 sub[-1][0] != symbol.sliceop:
/external/python/cpython2/Modules/
Dparsermodule.c966 VALIDATER(subscriptlist); VALIDATER(sliceop);
2981 && validate_ntype(tree, sliceop); in validate_sliceop()
/external/python/cpython2/Python/
Dast.c1570 if (TYPE(ch) == sliceop) { in ast_for_slice()