Searched refs:Starred (Results 1 – 13 of 13) sorted by relevance
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/ |
D | anf.py | 117 elif isinstance(node, (gast.Starred, gast.withitem, gast.slice)): 139 elif isinstance(node, (gast.Starred, gast.withitem, gast.slice)):
|
/external/tensorflow/tensorflow/python/autograph/converters/ |
D | call_trees.py | 95 if isinstance(a, gast.Starred):
|
/external/tensorflow/tensorflow/tools/compatibility/ |
D | ast_edits.py | 95 if sys.version_info[:2] >= (3, 5) and isinstance(arg, ast.Starred): 339 if sys.version_info[:2] >= (3, 5) and isinstance(arg, ast.Starred):
|
D | tf_upgrade_v2.py | 2010 if sys.version_info[:2] >= (3, 5) and isinstance(kw, ast.Starred):
|
/external/python/cpython3/Parser/ |
D | Python.asdl | 90 | Starred(expr value, expr_context ctx)
|
/external/python/cpython3/Include/ |
D | Python-ast.h | 345 } Starred; member 595 #define Starred(a0, a1, a2, a3, a4) _Py_Starred(a0, a1, a2, a3, a4) macro
|
/external/python/cpython3/Python/ |
D | ast.c | 196 actual_ctx = exp->v.Starred.ctx; in validate_expr() 337 return validate_expr(exp->v.Starred.value, ctx); in validate_expr() 992 e->v.Starred.ctx = ctx; in set_context() 993 if (!set_context(c, e->v.Starred.value, ctx, n)) in set_context() 2526 return Starred(tmp, Load, LINENO(n), n->n_col_offset, c->c_arena); in ast_for_starred() 2786 starred = Starred(e, Load, LINENO(chch), in ast_for_call()
|
D | ast_unparse.c | 776 APPEND_EXPR(e->v.Starred.value, PR_EXPR); in append_ast_starred()
|
D | ast_opt.c | 600 CALL(astfold_expr, expr_ty, node_->v.Starred.value); in astfold_expr()
|
D | compile.c | 3326 VISIT(c, expr, elt->v.Starred.value); in starunpack_helper() 3362 asdl_seq_SET(elts, i, elt->v.Starred.value); in assignment_helper() 3705 VISIT(c, expr, elt->v.Starred.value); in compiler_call_helper() 4547 switch (e->v.Starred.ctx) { in compiler_visit_expr()
|
D | Python-ast.c | 2301 Starred(expr_ty value, expr_context_ty ctx, int lineno, int col_offset, PyArena in Starred() function 2319 p->v.Starred.value = value; in Starred() 2320 p->v.Starred.ctx = ctx; in Starred() 3410 value = ast2obj_expr(o->v.Starred.value); in ast2obj_expr() 3415 value = ast2obj_expr_context(o->v.Starred.ctx); in ast2obj_expr() 6971 *out = Starred(value, ctx, lineno, col_offset, arena); in obj2ast_expr()
|
D | symtable.c | 1484 VISIT(st, expr, e->v.Starred.value); in symtable_visit_expr()
|
/external/python/cpython3/Lib/test/ |
D | test_ast.py | 979 left = ast.List([ast.Starred(ast.Name("x", ast.Load()), ast.Store())],
|