/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | Python.asdl | 28 | With(expr context_expr, expr? optional_vars, stmt* body)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/parser/ |
D | unparse.py | 304 if t.optional_vars: 306 self.dispatch(t.optional_vars)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | Python-ast.h | 132 expr_ty optional_vars; member 415 stmt_ty _Py_With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | Python-ast.h | 132 expr_ty optional_vars; member 415 stmt_ty _Py_With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body,
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | ast.c | 3126 expr_ty context_expr, optional_vars = NULL; in ast_for_with_item() local 3133 optional_vars = ast_for_expr(c, CHILD(n, 2)); in ast_for_with_item() 3135 if (!optional_vars) { in ast_for_with_item() 3138 if (!set_context(c, optional_vars, Store, n)) { in ast_for_with_item() 3143 return With(context_expr, optional_vars, content, LINENO(n), in ast_for_with_item()
|
D | symtable.c | 1172 if (s->v.With.optional_vars) { in symtable_visit_stmt() 1173 VISIT(st, expr, s->v.With.optional_vars); in symtable_visit_stmt()
|
D | Python-ast.c | 1245 With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int lineno, in With() argument 1259 p->v.With.optional_vars = optional_vars; in With() 2374 value = ast2obj_expr(o->v.With.optional_vars); in ast2obj_stmt() 4143 expr_ty optional_vars; in obj2ast_stmt() local 4162 res = obj2ast_expr(tmp, &optional_vars, arena); in obj2ast_stmt() 4167 optional_vars = NULL; in obj2ast_stmt() 4194 *out = With(context_expr, optional_vars, body, lineno, in obj2ast_stmt()
|
D | compile.c | 2944 if (s->v.With.optional_vars) { in compiler_with() 2945 VISIT(c, expr, s->v.With.optional_vars); in compiler_with()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | ast.c | 3143 expr_ty context_expr, optional_vars = NULL; in ast_for_with_item() local 3150 optional_vars = ast_for_expr(c, CHILD(n, 2)); in ast_for_with_item() 3152 if (!optional_vars) { in ast_for_with_item() 3155 if (!set_context(c, optional_vars, Store, n)) { in ast_for_with_item() 3160 return With(context_expr, optional_vars, content, LINENO(n), in ast_for_with_item()
|
D | symtable.c | 1174 if (s->v.With.optional_vars) { in symtable_visit_stmt() 1175 VISIT(st, expr, s->v.With.optional_vars); in symtable_visit_stmt()
|
D | Python-ast.c | 1262 With(expr_ty context_expr, expr_ty optional_vars, asdl_seq * body, int lineno, in With() argument 1276 p->v.With.optional_vars = optional_vars; in With() 2391 value = ast2obj_expr(o->v.With.optional_vars); in ast2obj_stmt() 4160 expr_ty optional_vars; in obj2ast_stmt() local 4179 res = obj2ast_expr(tmp, &optional_vars, arena); in obj2ast_stmt() 4184 optional_vars = NULL; in obj2ast_stmt() 4211 *out = With(context_expr, optional_vars, body, lineno, in obj2ast_stmt()
|
D | compile.c | 2964 if (s->v.With.optional_vars) { in compiler_with() 2965 VISIT(c, expr, s->v.With.optional_vars); in compiler_with()
|