/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/compiler/ |
D | ast.txt | 25 IfExp: test, then, else_
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/ |
D | Python.asdl | 57 | IfExp(expr test, expr body, expr orelse)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/ |
D | Python-ast.h | 221 } IfExp; member 461 #define IfExp(a0, a1, a2, a3, a4, a5) _Py_IfExp(a0, a1, a2, a3, a4, a5) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/ |
D | Python-ast.h | 221 } IfExp; member 461 #define IfExp(a0, a1, a2, a3, a4, a5) _Py_IfExp(a0, a1, a2, a3, a4, a5) macro
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/ |
D | symtable.c | 1210 VISIT(st, expr, e->v.IfExp.test); in symtable_visit_expr() 1211 VISIT(st, expr, e->v.IfExp.body); in symtable_visit_expr() 1212 VISIT(st, expr, e->v.IfExp.orelse); in symtable_visit_expr()
|
D | Python-ast.c | 1567 IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int col_offset, in IfExp() function 1590 p->v.IfExp.test = test; in IfExp() 1591 p->v.IfExp.body = body; in IfExp() 1592 p->v.IfExp.orelse = orelse; in IfExp() 2623 value = ast2obj_expr(o->v.IfExp.test); in ast2obj_expr() 2628 value = ast2obj_expr(o->v.IfExp.body); in ast2obj_expr() 2633 value = ast2obj_expr(o->v.IfExp.orelse); in ast2obj_expr() 4925 *out = IfExp(test, body, orelse, lineno, col_offset, arena); in obj2ast_expr()
|
D | compile.c | 1492 VISIT(c, expr, e->v.IfExp.test); in compiler_ifexp() 1494 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp() 1497 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
|
D | ast.c | 992 return IfExp(expression, body, orelse, LINENO(n), n->n_col_offset, in ast_for_ifexpr()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/ |
D | symtable.c | 1212 VISIT(st, expr, e->v.IfExp.test); in symtable_visit_expr() 1213 VISIT(st, expr, e->v.IfExp.body); in symtable_visit_expr() 1214 VISIT(st, expr, e->v.IfExp.orelse); in symtable_visit_expr()
|
D | Python-ast.c | 1584 IfExp(expr_ty test, expr_ty body, expr_ty orelse, int lineno, int col_offset, in IfExp() function 1607 p->v.IfExp.test = test; in IfExp() 1608 p->v.IfExp.body = body; in IfExp() 1609 p->v.IfExp.orelse = orelse; in IfExp() 2640 value = ast2obj_expr(o->v.IfExp.test); in ast2obj_expr() 2645 value = ast2obj_expr(o->v.IfExp.body); in ast2obj_expr() 2650 value = ast2obj_expr(o->v.IfExp.orelse); in ast2obj_expr() 4942 *out = IfExp(test, body, orelse, lineno, col_offset, arena); in obj2ast_expr()
|
D | compile.c | 1515 VISIT(c, expr, e->v.IfExp.test); in compiler_ifexp() 1517 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp() 1520 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
|
D | ast.c | 992 return IfExp(expression, body, orelse, LINENO(n), n->n_col_offset, in ast_for_ifexpr()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/compiler/ |
D | ast.py | 713 class IfExp(Node): class
|
D | transformer.py | 603 return IfExp(test, then, else_, lineno=nodelist[1][2])
|