Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c226 static PyTypeObject *Call_type; variable
769 Call_type = make_type("Call", expr_type, Call_fields, 5); in init_types()
770 if (!Call_type) return 0; in init_types()
2779 result = PyType_GenericNew(Call_type, NULL, NULL); in ast2obj_expr()
5496 isinstance = PyObject_IsInstance(obj, (PyObject*)Call_type); in obj2ast_expr()
6839 if (PyDict_SetItemString(d, "Call", (PyObject*)Call_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c280 static PyTypeObject *Call_type; variable
944 Call_type = make_type("Call", expr_type, Call_fields, 3); in init_types()
945 if (!Call_type) return 0; in init_types()
3274 result = PyType_GenericNew(Call_type, NULL, NULL); in ast2obj_expr()
6523 isinstance = PyObject_IsInstance(obj, (PyObject*)Call_type); in obj2ast_expr()
8246 if (PyDict_SetItemString(d, "Call", (PyObject*)Call_type) < 0) return NULL; in PyInit__ast()