Home
last modified time | relevance | path

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

/third_party/python/Python/
Dast_unparse.c794 if (element->kind == Starred_kind) { in append_ast_subscript()
908 case Starred_kind: in append_ast_expr()
Dast_opt.c359 if (e->kind == Starred_kind) { in fold_iter()
577 case Starred_kind: in astfold_expr()
Dast.c203 case Starred_kind: in validate_expr()
340 case Starred_kind: in validate_expr()
Dcompile.c3841 if (elt->kind == Starred_kind) { in starunpack_helper()
3864 if (elt->kind == Starred_kind) { in starunpack_helper()
3893 if (elt->kind == Starred_kind && !seen_star) { in unpack_helper()
3902 else if (elt->kind == Starred_kind) { in unpack_helper()
3920 VISIT(c, expr, elt->kind != Starred_kind ? elt : elt->v.Starred.value); in assignment_helper()
4252 if (elt->kind == Starred_kind) { in maybe_optimize_method_call()
4447 if (elt->kind == Starred_kind) { in compiler_call_helper()
4461 assert(elt->kind != Starred_kind); in compiler_call_helper()
4488 if (n ==0 && nelts == 1 && ((expr_ty)asdl_seq_GET(args, 0))->kind == Starred_kind) { in compiler_call_helper()
4621 if (elt->kind != Starred_kind) { in compiler_sync_comprehension_generator()
[all …]
Dsymtable.c1707 case Starred_kind: in symtable_visit_expr()
DPython-ast.c3119 p->kind = Starred_kind; in _PyAST_Starred()
4540 case Starred_kind: in ast2obj_expr()
/third_party/python/Parser/
Dpegen.c186 case Starred_kind: in _PyPegen_get_expr_name()
1832 case Starred_kind: in _PyPegen_set_expr_context()
2495 case Starred_kind: in _PyPegen_get_invalid_target()
/third_party/python/Include/internal/
Dpycore_ast.h338 Attribute_kind=21, Subscript_kind=22, Starred_kind=23, enumerator