Home
last modified time | relevance | path

Searched refs:Starred (Results 1 – 13 of 13) sorted by relevance

/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
Danf.py117 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/
Dcall_trees.py95 if isinstance(a, gast.Starred):
/external/tensorflow/tensorflow/tools/compatibility/
Dast_edits.py95 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):
Dtf_upgrade_v2.py2010 if sys.version_info[:2] >= (3, 5) and isinstance(kw, ast.Starred):
/external/python/cpython3/Parser/
DPython.asdl90 | Starred(expr value, expr_context ctx)
/external/python/cpython3/Include/
DPython-ast.h345 } Starred; member
595 #define Starred(a0, a1, a2, a3, a4) _Py_Starred(a0, a1, a2, a3, a4) macro
/external/python/cpython3/Python/
Dast.c196 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()
Dast_unparse.c776 APPEND_EXPR(e->v.Starred.value, PR_EXPR); in append_ast_starred()
Dast_opt.c600 CALL(astfold_expr, expr_ty, node_->v.Starred.value); in astfold_expr()
Dcompile.c3326 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()
DPython-ast.c2301 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()
Dsymtable.c1484 VISIT(st, expr, e->v.Starred.value); in symtable_visit_expr()
/external/python/cpython3/Lib/test/
Dtest_ast.py979 left = ast.List([ast.Starred(ast.Name("x", ast.Load()), ast.Store())],