Lines Matching refs:xmlparseobject
82 } xmlparseobject; typedef
121 set_error(xmlparseobject *self, enum XML_Error code) in set_error()
145 have_handler(xmlparseobject *self, int type) in have_handler()
226 static void clear_handlers(xmlparseobject *self, int initial);
254 flag_error(xmlparseobject *self) in flag_error()
337 xmlparseobject *self) in call_with_frame()
388 string_intern(xmlparseobject *self, const char* str) in string_intern()
413 call_character_handler(xmlparseobject *self, const XML_Char *buffer, int len) in call_character_handler()
457 flush_character_buffer(xmlparseobject *self) in flush_character_buffer()
470 xmlparseobject *self = (xmlparseobject *) userData; in my_CharacterDataHandler()
499 xmlparseobject *self = (xmlparseobject *)userData; in my_StartElementHandler()
582 xmlparseobject *self = GETUSERDATA ; \
609 (xmlparseobject *)userData)
614 (xmlparseobject *)userData)
716 xmlparseobject *self = (xmlparseobject *)userData; in my_ElementDeclHandler()
874 get_parse_result(xmlparseobject *self, int rv) in get_parse_result()
893 xmlparse_Parse(xmlparseobject *self, PyObject *args) in xmlparse_Parse()
962 xmlparse_ParseFile(xmlparseobject *self, PyObject *f) in xmlparse_ParseFile()
1006 xmlparse_SetBase(xmlparseobject *self, PyObject *args) in xmlparse_SetBase()
1024 xmlparse_GetBase(xmlparseobject *self, PyObject *unused) in xmlparse_GetBase()
1036 xmlparse_GetInputContext(xmlparseobject *self, PyObject *unused) in xmlparse_GetInputContext()
1059 xmlparse_ExternalEntityParserCreate(xmlparseobject *self, PyObject *args) in xmlparse_ExternalEntityParserCreate()
1063 xmlparseobject *new_parser; in xmlparse_ExternalEntityParserCreate()
1073 new_parser = PyObject_New(xmlparseobject, &Xmlparsetype); in xmlparse_ExternalEntityParserCreate()
1076 new_parser = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in xmlparse_ExternalEntityParserCreate()
1154 xmlparse_SetParamEntityParsing(xmlparseobject *p, PyObject* args) in xmlparse_SetParamEntityParsing()
1174 xmlparse_UseForeignDTD(xmlparseobject *self, PyObject *args) in xmlparse_UseForeignDTD()
1284 xmlparseobject *self; in newxmlparseobject()
1288 self = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in newxmlparseobject()
1290 self = PyObject_New(xmlparseobject, &Xmlparsetype); in newxmlparseobject()
1354 xmlparse_dealloc(xmlparseobject *self) in xmlparse_dealloc()
1411 xmlparse_getattr(xmlparseobject *self, char *name) in xmlparse_getattr()
1516 sethandler(xmlparseobject *self, const char *name, PyObject* v) in sethandler()
1552 xmlparse_setattr(xmlparseobject *self, char *name, PyObject *v) in xmlparse_setattr()
1679 xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg) in xmlparse_traverse()
1688 xmlparse_clear(xmlparseobject *op) in xmlparse_clear()
1701 sizeof(xmlparseobject) + PyGC_HEAD_SIZE,/*tp_basicsize*/
2053 clear_handlers(xmlparseobject *self, int initial) in clear_handlers()