Home
last modified time | relevance | path

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

/external/python/cpython2/Python/
DPython-ast.c314 static PyTypeObject *Div_type; variable
851 Div_type = make_type("Div", operator_type, NULL, 0); in init_types()
852 if (!Div_type) return 0; in init_types()
853 Div_singleton = PyType_GenericNew(Div_type, NULL, NULL); in init_types()
6185 isinstance = PyObject_IsInstance(obj, (PyObject *)Div_type); in obj2ast_operator()
6876 if (PyDict_SetItemString(d, "Div", (PyObject*)Div_type) < 0) return; in init_ast()
/external/python/cpython3/Python/
DPython-ast.c403 static PyTypeObject *Div_type; variable
1042 Div_type = make_type("Div", operator_type, NULL, 0); in init_types()
1043 if (!Div_type) return 0; in init_types()
1044 Div_singleton = PyType_GenericNew(Div_type, NULL, NULL); in init_types()
7386 isinstance = PyObject_IsInstance(obj, (PyObject *)Div_type); in obj2ast_operator()
8302 if (PyDict_SetItemString(d, "Div", (PyObject*)Div_type) < 0) return NULL; in PyInit__ast()