Home
last modified time | relevance | path

Searched refs:expr_ty (Results 1 – 7 of 7) sorted by relevance

/external/python/cpython2/Include/
DPython-ast.h9 typedef struct _expr *expr_ty; typedef
52 expr_ty body;
87 expr_ty value;
96 expr_ty value;
100 expr_ty target;
102 expr_ty value;
106 expr_ty dest;
112 expr_ty target;
113 expr_ty iter;
119 expr_ty test;
[all …]
/external/python/cpython2/Python/
Dast.c27 static expr_ty ast_for_expr(struct compiling *, const node *);
32 static expr_ty ast_for_testlist(struct compiling *, const node *);
34 static expr_ty ast_for_testlist_comp(struct compiling *, const node *);
37 static expr_ty ast_for_call(struct compiling *, const node *, expr_ty);
272 expr_ty testlist_ast; in PyAST_FromNode()
370 set_context(struct compiling *c, expr_ty e, expr_context_ty ctx, const node *n) in set_context()
480 if (!set_context(c, (expr_ty)asdl_seq_GET(s, i), ctx, n)) in set_context()
582 expr_ty expression; in seq_for_testlist()
607 static expr_ty
611 expr_ty result; in compiler_complex_args()
[all …]
DPython-ast.c971 static int obj2ast_expr(PyObject* obj, expr_ty* out, PyArena* arena);
1012 Expression(expr_ty body, PyArena *arena) in Expression()
1092 Return(expr_ty value, int lineno, int col_offset, PyArena *arena) in Return()
1120 Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena in Assign()
1141 AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int in AugAssign()
1173 Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int col_offset, in Print()
1190 For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse, int in For()
1218 While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int in While()
1240 If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int in If()
1262 With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int lineno, in With()
[all …]
Dcompile.c164 static int compiler_visit_expr(struct compiler *, expr_ty);
177 static int expr_constant(expr_ty e);
1313 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators()
1325 expr_ty arg = (expr_ty)asdl_seq_GET(args->args, i); in compiler_arguments()
1462 compiler_ifexp(struct compiler *c, expr_ty e) in compiler_ifexp()
1484 compiler_lambda(struct compiler *c, expr_ty e) in compiler_lambda()
1543 expr_ty e = (expr_ty)asdl_seq_GET(s->v.Print.values, i); in compiler_print()
2106 (expr_ty)asdl_seq_GET(s->v.Assign.targets, i)); in compiler_visit_stmt()
2438 compiler_boolop(struct compiler *c, expr_ty e) in compiler_boolop()
2456 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); in compiler_boolop()
[all …]
Dsymtable.c170 static int symtable_visit_expr(struct symtable *st, expr_ty s);
171 static int symtable_visit_genexp(struct symtable *st, expr_ty s);
172 static int symtable_visit_setcomp(struct symtable *st, expr_ty e);
173 static int symtable_visit_dictcomp(struct symtable *st, expr_ty e);
1184 symtable_visit_expr(struct symtable *st, expr_ty e) in symtable_visit_expr()
1316 expr_ty arg = (expr_ty)asdl_seq_GET(args, i); in symtable_visit_params()
1352 expr_ty arg = (expr_ty)asdl_seq_GET(args, i); in symtable_visit_params_nested()
1497 symtable_handle_comprehension(struct symtable *st, expr_ty e, in symtable_handle_comprehension()
1499 expr_ty elt, expr_ty value) in symtable_handle_comprehension()
1534 symtable_visit_genexp(struct symtable *st, expr_ty e) in symtable_visit_genexp()
[all …]
Dfuture.c106 expr_ty e = s->v.Expr.value; in future_parse()
/external/v8/src/asmjs/
Dasm-typer.cc1558 AsmType* expr_ty = AsmType::None(); in ValidateExpression() local
1564 RECURSE(expr_ty = ValidateNumericLiteral(expr->AsLiteral())); in ValidateExpression()
1567 RECURSE(expr_ty = ValidateIdentifier(expr->AsVariableProxy())); in ValidateExpression()
1570 RECURSE(expr_ty = ValidateCallExpression(expr->AsCall())); in ValidateExpression()
1573 RECURSE(expr_ty = ValidateMemberExpression(expr->AsProperty())); in ValidateExpression()
1576 RECURSE(expr_ty = ValidateAssignmentExpression(expr->AsAssignment())); in ValidateExpression()
1579 RECURSE(expr_ty = ValidateUnaryExpression(expr->AsUnaryOperation())); in ValidateExpression()
1582 RECURSE(expr_ty = ValidateConditionalExpression(expr->AsConditional())); in ValidateExpression()
1585 RECURSE(expr_ty = ValidateCompareOperation(expr->AsCompareOperation())); in ValidateExpression()
1588 RECURSE(expr_ty = ValidateBinaryOperation(expr->AsBinaryOperation())); in ValidateExpression()
[all …]