Lines Matching refs:xmlparseobject

69 } xmlparseobject;  typedef
110 set_error(xmlparseobject *self, enum XML_Error code) in set_error()
135 have_handler(xmlparseobject *self, int type) in have_handler()
183 static void clear_handlers(xmlparseobject *self, int initial);
211 flag_error(xmlparseobject *self) in flag_error()
220 xmlparseobject *self) in call_with_frame()
233 string_intern(xmlparseobject *self, const char* str) in string_intern()
260 call_character_handler(xmlparseobject *self, const XML_Char *buffer, int len) in call_character_handler()
298 flush_character_buffer(xmlparseobject *self) in flush_character_buffer()
311 xmlparseobject *self = (xmlparseobject *) userData; in my_CharacterDataHandler()
344 xmlparseobject *self = (xmlparseobject *)userData; in my_StartElementHandler()
433 xmlparseobject *self = GETUSERDATA ; \
462 (xmlparseobject *)userData)
467 (xmlparseobject *)userData)
548 xmlparseobject *self = (xmlparseobject *)userData; in my_ElementDeclHandler()
692 get_parse_result(xmlparseobject *self, int rv) in get_parse_result()
721 pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyObject *data, in pyexpat_xmlparser_Parse_impl()
815 pyexpat_xmlparser_ParseFile(xmlparseobject *self, PyObject *file) in pyexpat_xmlparser_ParseFile()
864 pyexpat_xmlparser_SetBase_impl(xmlparseobject *self, const char *base) in pyexpat_xmlparser_SetBase_impl()
880 pyexpat_xmlparser_GetBase_impl(xmlparseobject *self) in pyexpat_xmlparser_GetBase_impl()
896 pyexpat_xmlparser_GetInputContext_impl(xmlparseobject *self) in pyexpat_xmlparser_GetInputContext_impl()
925 pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self, in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
930 xmlparseobject *new_parser; in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
933 new_parser = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
1003 pyexpat_xmlparser_SetParamEntityParsing_impl(xmlparseobject *self, int flag) in pyexpat_xmlparser_SetParamEntityParsing_impl()
1026 pyexpat_xmlparser_UseForeignDTD_impl(xmlparseobject *self, int flag) in pyexpat_xmlparser_UseForeignDTD_impl()
1044 pyexpat_xmlparser___dir___impl(xmlparseobject *self) in pyexpat_xmlparser___dir___impl()
1168 xmlparseobject *self; in newxmlparseobject()
1170 self = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in newxmlparseobject()
1219 xmlparse_dealloc(xmlparseobject *self) in xmlparse_dealloc()
1262 xmlparse_getattro(xmlparseobject *self, PyObject *nameobj) in xmlparse_getattro()
1336 sethandler(xmlparseobject *self, PyObject *name, PyObject* v) in sethandler()
1370 xmlparse_setattro(xmlparseobject *self, PyObject *name, PyObject *v) in xmlparse_setattro()
1491 xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg) in xmlparse_traverse()
1500 xmlparse_clear(xmlparseobject *op) in xmlparse_clear()
1512 sizeof(xmlparseobject), /*tp_basicsize*/
1898 clear_handlers(xmlparseobject *self, int initial) in clear_handlers()