Home
last modified time | relevance | path

Searched refs:ast_for_call (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dast.c37 static expr_ty ast_for_call(struct compiling *, const node *, expr_ty);
862 d = ast_for_call(c, CHILD(n, 3), name_expr); in ast_for_decorator()
1663 return ast_for_call(c, CHILD(n, 1), left_expr); in ast_for_trailer()
1978 ast_for_call(struct compiling *c, const node *n, expr_ty func) in ast_for_call() function
/external/python/cpython3/Python/
Dast.c607 static expr_ty ast_for_call(struct compiling *, const node *, expr_ty, bool);
1541 d = ast_for_call(c, CHILD(n, 3), name_expr, true); in ast_for_decorator()
2362 return ast_for_call(c, CHILD(n, 1), left_expr, true); in ast_for_trailer()
2699 ast_for_call(struct compiling *c, const node *n, expr_ty func, bool allowgen) in ast_for_call() function
3948 call = ast_for_call(c, CHILD(n, 3), dummy, false); in ast_for_classdef()