Searched refs:GeneratorExp (Results 1 – 10 of 10) sorted by relevance
/third_party/python/Parser/ |
D | Python.asdl | 68 | GeneratorExp(expr elt, comprehension* generators)
|
/third_party/python/Python/ |
D | ast_unparse.c | 422 APPEND_EXPR(e->v.GeneratorExp.elt, PR_TEST); in append_ast_genexp() 423 APPEND(comprehensions, e->v.GeneratorExp.generators); in append_ast_genexp()
|
D | ast_opt.c | 540 CALL(astfold_expr, expr_ty, node_->v.GeneratorExp.elt); in astfold_expr() 541 CALL_SEQ(astfold_comprehension, comprehension, node_->v.GeneratorExp.generators); in astfold_expr()
|
D | symtable.c | 2075 e->v.GeneratorExp.generators, in symtable_visit_genexp() 2076 e->v.GeneratorExp.elt, NULL); in symtable_visit_genexp()
|
D | ast.c | 280 COMP(GeneratorExp) in validate_expr()
|
D | Python-ast.c | 2846 p->v.GeneratorExp.elt = elt; in _PyAST_GeneratorExp() 2847 p->v.GeneratorExp.generators = generators; in _PyAST_GeneratorExp() 4364 value = ast2obj_expr(state, o->v.GeneratorExp.elt); in ast2obj_expr() 4369 value = ast2obj_list(state, (asdl_seq*)o->v.GeneratorExp.generators, in ast2obj_expr()
|
D | compile.c | 4902 e->v.GeneratorExp.generators, in compiler_genexp() 4903 e->v.GeneratorExp.elt, NULL); in compiler_genexp()
|
/third_party/python/Include/internal/ |
D | pycore_ast.h | 403 } GeneratorExp; member
|
/third_party/python/Doc/library/ |
D | ast.rst | 619 GeneratorExp(elt, generators) 702 body=GeneratorExp(
|
/third_party/python/Lib/test/ |
D | test_ast.py | 1377 self._simple_comp(ast.GeneratorExp)
|