Searched refs:Xmlparsetype (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Modules/ |
D | pyexpat.c | 86 static PyTypeObject Xmlparsetype; variable 1073 new_parser = PyObject_New(xmlparseobject, &Xmlparsetype); in xmlparse_ExternalEntityParserCreate() 1076 new_parser = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in xmlparse_ExternalEntityParserCreate() 1288 self = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in newxmlparseobject() 1290 self = PyObject_New(xmlparseobject, &Xmlparsetype); in newxmlparseobject() 1698 static PyTypeObject Xmlparsetype = { variable 1852 Py_TYPE(&Xmlparsetype) = &PyType_Type; in MODULE_INITFUNC() 1871 Py_INCREF(&Xmlparsetype); in MODULE_INITFUNC() 1872 PyModule_AddObject(m, "XMLParserType", (PyObject *) &Xmlparsetype); in MODULE_INITFUNC()
|
/external/python/cpython3/Modules/ |
D | pyexpat.c | 75 static PyTypeObject Xmlparsetype; variable 933 new_parser = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in pyexpat_xmlparser_ExternalEntityParserCreate_impl() 1170 self = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in newxmlparseobject() 1509 static PyTypeObject Xmlparsetype = { variable 1663 if (PyType_Ready(&Xmlparsetype) < 0) in MODULE_INITFUNC() 1682 Py_INCREF(&Xmlparsetype); in MODULE_INITFUNC() 1683 PyModule_AddObject(m, "XMLParserType", (PyObject *) &Xmlparsetype); in MODULE_INITFUNC()
|