Home
last modified time | relevance | path

Searched refs:IfExp (Results 1 – 10 of 10) sorted by relevance

/external/python/cpython2/Tools/compiler/
Dast.txt25 IfExp: test, then, else_
/external/python/cpython2/Parser/
DPython.asdl57 | IfExp(expr test, expr body, expr orelse)
/external/python/cpython2/Include/
DPython-ast.h221 } IfExp; member
461 #define IfExp(a0, a1, a2, a3, a4, a5) _Py_IfExp(a0, a1, a2, a3, a4, a5) macro
/external/python/cpython2/Python/
Dsymtable.c1212 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()
DPython-ast.c1584 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()
5050 *out = IfExp(test, body, orelse, lineno, col_offset, arena); in obj2ast_expr()
Dcompile.c1473 VISIT(c, expr, e->v.IfExp.test); in compiler_ifexp()
1475 VISIT(c, expr, e->v.IfExp.body); in compiler_ifexp()
1478 VISIT(c, expr, e->v.IfExp.orelse); in compiler_ifexp()
Dast.c992 return IfExp(expression, body, orelse, LINENO(n), n->n_col_offset, in ast_for_ifexpr()
/external/python/cpython2/PC/os2emx/
Dpython27.def714 "IfExp"
/external/python/cpython2/Lib/compiler/
Dast.py713 class IfExp(Node): class
Dtransformer.py603 return IfExp(test, then, else_, lineno=nodelist[1][2])