/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | Python-ast.h | 9 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 …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | Python-ast.h | 9 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 …]
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | Python-ast.c | 971 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 …]
|
D | ast.c | 27 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 …]
|
D | compile.c | 164 static int compiler_visit_expr(struct compiler *, expr_ty); 177 static int expr_constant(expr_ty e); 1354 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators() 1366 expr_ty arg = (expr_ty)asdl_seq_GET(args->args, i); in compiler_arguments() 1504 compiler_ifexp(struct compiler *c, expr_ty e) in compiler_ifexp() 1526 compiler_lambda(struct compiler *c, expr_ty e) in compiler_lambda() 1585 expr_ty e = (expr_ty)asdl_seq_GET(s->v.Print.values, i); in compiler_print() 2145 (expr_ty)asdl_seq_GET(s->v.Assign.targets, i)); in compiler_visit_stmt() 2477 compiler_boolop(struct compiler *c, expr_ty e) in compiler_boolop() 2495 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); in compiler_boolop() [all …]
|
D | symtable.c | 170 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 …]
|
D | future.c | 106 expr_ty e = s->v.Expr.value; in future_parse()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | Python-ast.c | 954 static int obj2ast_expr(PyObject* obj, expr_ty* out, PyArena* arena); 995 Expression(expr_ty body, PyArena *arena) in Expression() 1075 Return(expr_ty value, int lineno, int col_offset, PyArena *arena) in Return() 1103 Assign(asdl_seq * targets, expr_ty value, int lineno, int col_offset, PyArena in Assign() 1124 AugAssign(expr_ty target, operator_ty op, expr_ty value, int lineno, int in AugAssign() 1156 Print(expr_ty dest, asdl_seq * values, bool nl, int lineno, int col_offset, in Print() 1173 For(expr_ty target, expr_ty iter, asdl_seq * body, asdl_seq * orelse, int in For() 1201 While(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int in While() 1223 If(expr_ty test, asdl_seq * body, asdl_seq * orelse, int lineno, int in If() 1245 With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int lineno, in With() [all …]
|
D | ast.c | 27 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 …]
|
D | compile.c | 164 static int compiler_visit_expr(struct compiler *, expr_ty); 177 static int expr_constant(expr_ty e); 1331 VISIT(c, expr, (expr_ty)asdl_seq_GET(decos, i)); in compiler_decorators() 1343 expr_ty arg = (expr_ty)asdl_seq_GET(args->args, i); in compiler_arguments() 1481 compiler_ifexp(struct compiler *c, expr_ty e) in compiler_ifexp() 1503 compiler_lambda(struct compiler *c, expr_ty e) in compiler_lambda() 1562 expr_ty e = (expr_ty)asdl_seq_GET(s->v.Print.values, i); in compiler_print() 2125 (expr_ty)asdl_seq_GET(s->v.Assign.targets, i)); in compiler_visit_stmt() 2457 compiler_boolop(struct compiler *c, expr_ty e) in compiler_boolop() 2475 VISIT(c, expr, (expr_ty)asdl_seq_GET(s, i)); in compiler_boolop() [all …]
|
D | symtable.c | 168 static int symtable_visit_expr(struct symtable *st, expr_ty s); 169 static int symtable_visit_genexp(struct symtable *st, expr_ty s); 170 static int symtable_visit_setcomp(struct symtable *st, expr_ty e); 171 static int symtable_visit_dictcomp(struct symtable *st, expr_ty e); 1182 symtable_visit_expr(struct symtable *st, expr_ty e) in symtable_visit_expr() 1314 expr_ty arg = (expr_ty)asdl_seq_GET(args, i); in symtable_visit_params() 1350 expr_ty arg = (expr_ty)asdl_seq_GET(args, i); in symtable_visit_params_nested() 1495 symtable_handle_comprehension(struct symtable *st, expr_ty e, in symtable_handle_comprehension() 1497 expr_ty elt, expr_ty value) in symtable_handle_comprehension() 1532 symtable_visit_genexp(struct symtable *st, expr_ty e) in symtable_visit_genexp() [all …]
|
D | future.c | 111 expr_ty e = s->v.Expr.value; in future_parse()
|