Searched refs:_PyAST_Subscript (Results 1 – 5 of 5) sorted by relevance
| /third_party/python/Grammar/ |
| D | python.gram | 791 | a=primary '[' b=slices ']' { _PyAST_Subscript(a, b, Load, EXTRA) } 996 | a=t_primary '[' b=slices ']' !t_lookahead { _PyAST_Subscript(a, b, Store, EXTRA) } 1012 | a=t_primary '[' b=slices ']' !t_lookahead { _PyAST_Subscript(a, b, Store, EXTRA) } 1016 | a=t_primary '[' b=slices ']' &t_lookahead { _PyAST_Subscript(a, b, Load, EXTRA) } 1035 | a=t_primary '[' b=slices ']' !t_lookahead { _PyAST_Subscript(a, b, Del, EXTRA) }
|
| /third_party/python/Include/internal/ |
| D | pycore_ast.h | 780 expr_ty _PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int
|
| /third_party/python/Parser/ |
| D | action_helpers.c | 337 return _PyAST_Subscript(e->v.Subscript.value, e->v.Subscript.slice, in _set_subscript_context()
|
| D | parser.c | 13907 _res = _PyAST_Subscript ( a , b , Load , EXTRA ); in primary_raw() 17475 _res = _PyAST_Subscript ( a , b , Store , EXTRA ); in target_with_star_atom_rule() 17869 _res = _PyAST_Subscript ( a , b , Store , EXTRA ); in single_subscript_attribute_target_rule() 18025 _res = _PyAST_Subscript ( a , b , Load , EXTRA ); in t_primary_raw() 18379 _res = _PyAST_Subscript ( a , b , Del , EXTRA ); in del_target_rule()
|
| /third_party/python/Python/ |
| D | Python-ast.c | 3104 _PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int lineno, in _PyAST_Subscript() function 9592 *out = _PyAST_Subscript(value, slice, ctx, lineno, col_offset, in obj2ast_expr()
|