Home
last modified time | relevance | path

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

/third_party/python/Include/internal/
Dpycore_ast.h740 expr_ty _PyAST_DictComp(expr_ty key, expr_ty value, asdl_comprehension_seq *
/third_party/python/Grammar/
Dpython.gram726 | '{' a=kvpair b=for_if_clauses '}' { _PyAST_DictComp(a->key, a->value, b, EXTRA) }
/third_party/python/Python/
DPython-ast.c2802 _PyAST_DictComp(expr_ty key, expr_ty value, asdl_comprehension_seq * in _PyAST_DictComp() function
8618 *out = _PyAST_DictComp(key, value, generators, lineno, col_offset, in obj2ast_expr()
/third_party/python/Parser/
Dparser.c15808 _res = _PyAST_DictComp ( a -> key , a -> value , b , EXTRA ); in dictcomp_rule()