Home
last modified time | relevance | path

Searched refs:ListComp_kind (Results 1 – 13 of 13) sorted by relevance

/external/python/cpython2/Include/
DPython-ast.h188 IfExp_kind=5, Dict_kind=6, Set_kind=7, ListComp_kind=8, enumerator
/external/python/cpython3/Python/
Dast_unparse.c869 case ListComp_kind: in append_ast_expr()
Dsymtable.c1583 case ListComp_kind: in symtable_visit_expr()
1891 (e->kind == ListComp_kind) ? "'yield' inside list comprehension" : in symtable_handle_comprehension()
Dast_opt.c499 case ListComp_kind: in astfold_expr()
Dcompile.c3974 case ListComp_kind: in infer_type()
4003 case ListComp_kind: in check_caller()
4067 case ListComp_kind: in check_index()
4724 assert(e->kind == ListComp_kind); in compiler_listcomp()
5020 case ListComp_kind: in compiler_visit_expr1()
Dast.c1065 case ListComp_kind: in get_expr_name()
DPython-ast.c2766 p->kind = ListComp_kind; in ListComp()
4074 case ListComp_kind: in ast2obj_expr()
/external/python/cpython3/Include/
DPython-ast.h228 ListComp_kind=9, SetComp_kind=10, DictComp_kind=11, enumerator
/external/python/cpython2/Python/
Dsymtable.c1229 case ListComp_kind: in symtable_visit_expr()
Dcompile.c2633 assert(e->kind == ListComp_kind); in compiler_listcomp()
3001 case ListComp_kind: in compiler_visit_expr()
Dast.c433 case ListComp_kind: in set_context()
DPython-ast.c1658 p->kind = ListComp_kind; in ListComp()
2679 case ListComp_kind: in ast2obj_expr()
/external/python/cpython3/Parser/pegen/
Dpegen.c191 case ListComp_kind: in _PyPegen_get_expr_name()