Lines Matching refs:xmlparseobject
81 } xmlparseobject; typedef
119 set_error(pyexpat_state *state, xmlparseobject *self, enum XML_Error code) in set_error()
144 have_handler(xmlparseobject *self, int type) in have_handler()
179 static void clear_handlers(xmlparseobject *self, int initial);
207 flag_error(xmlparseobject *self) in flag_error()
216 xmlparseobject *self) in call_with_frame()
229 string_intern(xmlparseobject *self, const char* str) in string_intern()
259 call_character_handler(xmlparseobject *self, const XML_Char *buffer, int len) in call_character_handler()
297 flush_character_buffer(xmlparseobject *self) in flush_character_buffer()
310 xmlparseobject *self = (xmlparseobject *) userData; in my_CharacterDataHandler()
343 xmlparseobject *self = (xmlparseobject *)userData; in my_StartElementHandler()
432 xmlparseobject *self = GETUSERDATA ; \
461 (xmlparseobject *)userData)
466 (xmlparseobject *)userData)
547 xmlparseobject *self = (xmlparseobject *)userData; in my_ElementDeclHandler()
692 get_parse_result(pyexpat_state *state, xmlparseobject *self, int rv) in get_parse_result()
722 pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyTypeObject *cls, in pyexpat_xmlparser_Parse_impl()
819 pyexpat_xmlparser_ParseFile_impl(xmlparseobject *self, PyTypeObject *cls, in pyexpat_xmlparser_ParseFile_impl()
873 pyexpat_xmlparser_SetBase_impl(xmlparseobject *self, const char *base) in pyexpat_xmlparser_SetBase_impl()
889 pyexpat_xmlparser_GetBase_impl(xmlparseobject *self) in pyexpat_xmlparser_GetBase_impl()
905 pyexpat_xmlparser_GetInputContext_impl(xmlparseobject *self) in pyexpat_xmlparser_GetInputContext_impl()
935 pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self, in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
941 xmlparseobject *new_parser; in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
946 new_parser = PyObject_GC_New(xmlparseobject, state->xml_parse_type); in pyexpat_xmlparser_ExternalEntityParserCreate_impl()
1019 pyexpat_xmlparser_SetParamEntityParsing_impl(xmlparseobject *self, int flag) in pyexpat_xmlparser_SetParamEntityParsing_impl()
1043 pyexpat_xmlparser_UseForeignDTD_impl(xmlparseobject *self, PyTypeObject *cls, in pyexpat_xmlparser_UseForeignDTD_impl()
1136 xmlparseobject *self; in newxmlparseobject()
1138 self = PyObject_GC_New(xmlparseobject, state->xml_parse_type); in newxmlparseobject()
1186 xmlparse_traverse(xmlparseobject *op, visitproc visit, void *arg) in xmlparse_traverse()
1196 xmlparse_clear(xmlparseobject *op) in xmlparse_clear()
1204 xmlparse_dealloc(xmlparseobject *self) in xmlparse_dealloc()
1227 xmlparse_handler_getter(xmlparseobject *self, struct HandlerInfo *hi) in xmlparse_handler_getter()
1239 xmlparse_handler_setter(xmlparseobject *self, PyObject *v, struct HandlerInfo *hi) in xmlparse_handler_setter()
1285 xmlparse_##name##_getter(xmlparseobject *self, void *closure) \
1300 xmlparse_buffer_text_getter(xmlparseobject *self, void *closure) in INT_GETTER()
1306 xmlparse_buffer_text_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_buffer_text_setter()
1335 xmlparse_buffer_size_getter(xmlparseobject *self, void *closure) in xmlparse_buffer_size_getter()
1341 xmlparse_buffer_size_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_buffer_size_setter()
1393 xmlparse_buffer_used_getter(xmlparseobject *self, void *closure) in xmlparse_buffer_used_getter()
1399 xmlparse_namespace_prefixes_getter(xmlparseobject *self, void *closure) in xmlparse_namespace_prefixes_getter()
1405 xmlparse_namespace_prefixes_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_namespace_prefixes_setter()
1420 xmlparse_ordered_attributes_getter(xmlparseobject *self, void *closure) in xmlparse_ordered_attributes_getter()
1426 xmlparse_ordered_attributes_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_ordered_attributes_setter()
1440 xmlparse_specified_attributes_getter(xmlparseobject *self, void *closure) in xmlparse_specified_attributes_getter()
1446 xmlparse_specified_attributes_setter(xmlparseobject *self, PyObject *v, void *closure) in xmlparse_specified_attributes_setter()
1460 {"intern", T_OBJECT, offsetof(xmlparseobject, intern), READONLY, NULL},
1505 .basicsize = sizeof(xmlparseobject),
2035 clear_handlers(xmlparseobject *self, int initial) in clear_handlers()