Home
last modified time | relevance | path

Searched refs:_PyAST_Subscript (Results 1 – 5 of 5) sorted by relevance

/third_party/python/Grammar/
Dpython.gram677 | a=primary '[' b=slices ']' { _PyAST_Subscript(a, b, Load, EXTRA) }
789 | a=t_primary '[' b=slices ']' !t_lookahead { _PyAST_Subscript(a, b, Store, EXTRA) }
803 | a=t_primary '[' b=slices ']' !t_lookahead { _PyAST_Subscript(a, b, Store, EXTRA) }
808 | a=t_primary '[' b=slices ']' !t_lookahead { _PyAST_Subscript(a, b, Del, EXTRA) }
818 | a=t_primary '[' b=slices ']' &t_lookahead { _PyAST_Subscript(a, b, Load, EXTRA) }
/third_party/python/Include/internal/
Dpycore_ast.h769 expr_ty _PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int
/third_party/python/Parser/
Dpegen.c1814 return _PyAST_Subscript(e->v.Subscript.value, e->v.Subscript.slice, in _set_subscript_context()
Dparser.c14551 _res = _PyAST_Subscript ( a , b , Load , EXTRA ); in primary_raw()
17265 _res = _PyAST_Subscript ( a , b , Store , EXTRA ); in target_with_star_atom_rule()
17659 _res = _PyAST_Subscript ( a , b , Store , EXTRA ); in single_subscript_attribute_target_rule()
17828 _res = _PyAST_Subscript ( a , b , Del , EXTRA ); in del_target_rule()
18167 _res = _PyAST_Subscript ( a , b , Load , EXTRA ); in t_primary_raw()
/third_party/python/Python/
DPython-ast.c3067 _PyAST_Subscript(expr_ty value, expr_ty slice, expr_context_ty ctx, int lineno, in _PyAST_Subscript() function
9285 *out = _PyAST_Subscript(value, slice, ctx, lineno, col_offset, in obj2ast_expr()