Lines Matching refs:xmlparseobject
70 } xmlparseobject; typedef
110 set_error(xmlparseobject *self, enum XML_Error code) in set_error()
135 have_handler(xmlparseobject *self, int type) in have_handler()
170 static void clear_handlers(xmlparseobject *self, int initial);
198 flag_error(xmlparseobject *self) in flag_error()
207 xmlparseobject *self) in call_with_frame()
220 string_intern(xmlparseobject *self, const char* str) in string_intern()
250 call_character_handler(xmlparseobject *self, const XML_Char *buffer, int len) in call_character_handler()
288 flush_character_buffer(xmlparseobject *self) in flush_character_buffer()
301 xmlparseobject *self = (xmlparseobject *) userData; in my_CharacterDataHandler()
334 xmlparseobject *self = (xmlparseobject *)userData; in my_StartElementHandler()
423 xmlparseobject *self = GETUSERDATA ; \
452 (xmlparseobject *)userData)
457 (xmlparseobject *)userData)
538 xmlparseobject *self = (xmlparseobject *)userData; in my_ElementDeclHandler()
683 get_parse_result(xmlparseobject *self, int rv) in get_parse_result()
712 pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyObject *data, in pyexpat_xmlparser_Parse_impl()
806 pyexpat_xmlparser_ParseFile(xmlparseobject *self, PyObject *file) in pyexpat_xmlparser_ParseFile()
857 pyexpat_xmlparser_SetBase_impl(xmlparseobject *self, const char *base) in pyexpat_xmlparser_SetBase_impl()
873 pyexpat_xmlparser_GetBase_impl(xmlparseobject *self) in pyexpat_xmlparser_GetBase_impl()
889 pyexpat_xmlparser_GetInputContext_impl(xmlparseobject *self) in pyexpat_xmlparser_GetInputContext_impl()
918 pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self, in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
923 xmlparseobject *new_parser; in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
926 new_parser = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
997 pyexpat_xmlparser_SetParamEntityParsing_impl(xmlparseobject *self, int flag) in pyexpat_xmlparser_SetParamEntityParsing_impl()
1020 pyexpat_xmlparser_UseForeignDTD_impl(xmlparseobject *self, int flag) in pyexpat_xmlparser_UseForeignDTD_impl()
1110 xmlparseobject *self; in newxmlparseobject()
1112 self = PyObject_GC_New(xmlparseobject, &Xmlparsetype); in newxmlparseobject()
1161 xmlparse_dealloc(xmlparseobject *self) in xmlparse_dealloc()
1185 xmlparse_handler_getter(xmlparseobject *self, struct HandlerInfo *hi) in xmlparse_handler_getter()
1197 xmlparse_handler_setter(xmlparseobject *self, PyObject *v, struct HandlerInfo *hi) in xmlparse_handler_setter()
1243 xmlparse_##name##_getter(xmlparseobject *self, void *closure) \
1258 xmlparse_buffer_text_getter(xmlparseobject *self, void *closure) in INT_GETTER()
1264 xmlparse_buffer_text_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_buffer_text_setter()
1293 xmlparse_buffer_size_getter(xmlparseobject *self, void *closure) in xmlparse_buffer_size_getter()
1299 xmlparse_buffer_size_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_buffer_size_setter()
1351 xmlparse_buffer_used_getter(xmlparseobject *self, void *closure) in xmlparse_buffer_used_getter()
1357 xmlparse_namespace_prefixes_getter(xmlparseobject *self, void *closure) in xmlparse_namespace_prefixes_getter()
1363 xmlparse_namespace_prefixes_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_namespace_prefixes_setter()
1378 xmlparse_ordered_attributes_getter(xmlparseobject *self, void *closure) in xmlparse_ordered_attributes_getter()
1384 xmlparse_ordered_attributes_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_ordered_attributes_setter()
1398 xmlparse_specified_attributes_getter(xmlparseobject *self, void *closure) in xmlparse_specified_attributes_getter()
1404 xmlparse_specified_attributes_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_specified_attributes_setter()
1418 {"intern", T_OBJECT, offsetof(xmlparseobject, intern), READONLY, NULL},
1449 xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg) in xmlparse_traverse()
1458 xmlparse_clear(xmlparseobject *op) in xmlparse_clear()
1470 sizeof(xmlparseobject), /*tp_basicsize*/
1890 clear_handlers(xmlparseobject *self, int initial) in clear_handlers()