Home
last modified time | relevance | path

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

/external/tensorflow/tensorflow/python/autograph/converters/
Dcall_trees.py142 if isinstance(a, gast.Starred):
/external/tensorflow/tensorflow/tools/compatibility/
Dast_edits.py102 if sys.version_info[:2] >= (3, 5) and isinstance(arg, ast.Starred):
127 if isinstance(arg, ast.Starred):
469 if sys.version_info[:2] >= (3, 5) and isinstance(arg, ast.Starred):
Dtf_upgrade_v2.py1994 if sys.version_info[:2] >= (3, 5) and isinstance(kw, ast.Starred):
/external/python/cpython3/Parser/
DPython.asdl82 | Starred(expr value, expr_context ctx)
/external/tensorflow/tensorflow/python/autograph/pyct/common_transformers/
Danf.py196 if isinstance(node, (gast.Starred, gast.withitem, gast.slice)):
/external/python/cpython3/Include/
DPython-ast.h353 } Starred; member
640 #define Starred(a0, a1, a2, a3, a4, a5, a6) _Py_Starred(a0, a1, a2, a3, a4, a5, a6) macro
/external/python/cpython3/Python/
Dast.c192 actual_ctx = exp->v.Starred.ctx; in validate_expr()
308 return validate_expr(exp->v.Starred.value, ctx); in validate_expr()
1132 e->v.Starred.ctx = ctx; in set_context()
1133 if (!set_context(c, e->v.Starred.value, ctx, n)) in set_context()
2749 return Starred(tmp, Load, LINENO(n), n->n_col_offset, in ast_for_starred()
3023 starred = Starred(e, Load, LINENO(chch), in ast_for_call()
Dast_unparse.c804 APPEND_EXPR(e->v.Starred.value, PR_EXPR); in append_ast_starred()
Dast_opt.c551 CALL(astfold_expr, expr_ty, node_->v.Starred.value); in astfold_expr()
Dcompile.c3722 VISIT(c, expr, elt->v.Starred.value); in starunpack_helper()
3778 VISIT(c, expr, elt->kind != Starred_kind ? elt : elt->v.Starred.value); in assignment_helper()
4307 VISIT(c, expr, ((expr_ty)asdl_seq_GET(args, 0))->v.Starred.value); in compiler_call_helper()
5097 switch (e->v.Starred.ctx) { in compiler_visit_expr1()
DPython-ast.c3094 Starred(expr_ty value, expr_context_ty ctx, int lineno, int col_offset, int in Starred() function
3112 p->v.Starred.value = value; in Starred()
3113 p->v.Starred.ctx = ctx; in Starred()
4308 value = ast2obj_expr(state, o->v.Starred.value); in ast2obj_expr()
4313 value = ast2obj_expr_context(state, o->v.Starred.ctx); in ast2obj_expr()
8293 *out = Starred(value, ctx, lineno, col_offset, end_lineno, in obj2ast_expr()
Dsymtable.c1637 VISIT(st, expr, e->v.Starred.value); in symtable_visit_expr()
/external/python/cpython3/Parser/pegen/
Dpegen.c1568 … return _Py_Starred(_PyPegen_set_expr_context(p, e->v.Starred.value, ctx), ctx, EXTRA_EXPR(e, e)); in _set_starred_context()
2171 return _PyPegen_get_invalid_target(e->v.Starred.value, targets_type); in _PyPegen_get_invalid_target()
/external/python/cpython3/Doc/library/
Dast.rst317 .. class:: Starred(value, ctx)
333 Starred(
498 Starred(
/external/python/cpython3/Misc/NEWS.d/
D3.9.0a2.rst51 Fix the value of *end_col_offset* for Starred Expression AST nodes when they
/external/python/cpython3/Lib/
Dast.py1449 and not any(isinstance(elt, Starred) for elt in slice_value.elts)
/external/python/cpython3/Lib/test/
Dtest_ast.py1392 left = ast.List([ast.Starred(ast.Name("x", ast.Load()), ast.Store())],