Home
last modified time | relevance | path

Searched refs:_PyAST_ListComp (Results 1 – 4 of 4) sorted by relevance

/third_party/python/Include/internal/
Dpycore_ast.h745 expr_ty _PyAST_ListComp(expr_ty elt, asdl_comprehension_seq * generators, int
/third_party/python/Grammar/
Dpython.gram921 | '[' a=named_expression b=for_if_clauses ']' { _PyAST_ListComp(a, b, EXTRA) }
/third_party/python/Python/
DPython-ast.c2791 _PyAST_ListComp(expr_ty elt, asdl_comprehension_seq * generators, int lineno, in _PyAST_ListComp() function
8771 *out = _PyAST_ListComp(elt, generators, lineno, col_offset, end_lineno, in obj2ast_expr()
/third_party/python/Parser/
Dparser.c16189 _res = _PyAST_ListComp ( a , b , EXTRA ); in listcomp_rule()