Lines Matching refs:self

6 "Parse($self, data, isfinal=False, /)\n"
17 pyexpat_xmlparser_Parse_impl(xmlparseobject *self, PyTypeObject *cls,
21 pyexpat_xmlparser_Parse(xmlparseobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
43 return_value = pyexpat_xmlparser_Parse_impl(self, cls, data, isfinal);
50 "ParseFile($self, file, /)\n"
59 pyexpat_xmlparser_ParseFile_impl(xmlparseobject *self, PyTypeObject *cls,
63 pyexpat_xmlparser_ParseFile(xmlparseobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
76 return_value = pyexpat_xmlparser_ParseFile_impl(self, cls, file);
83 "SetBase($self, base, /)\n"
92 pyexpat_xmlparser_SetBase_impl(xmlparseobject *self, const char *base);
95 pyexpat_xmlparser_SetBase(xmlparseobject *self, PyObject *arg)
113 return_value = pyexpat_xmlparser_SetBase_impl(self, base);
120 "GetBase($self, /)\n"
129 pyexpat_xmlparser_GetBase_impl(xmlparseobject *self);
132 pyexpat_xmlparser_GetBase(xmlparseobject *self, PyObject *Py_UNUSED(ignored))
134 return pyexpat_xmlparser_GetBase_impl(self);
138 "GetInputContext($self, /)\n"
150 pyexpat_xmlparser_GetInputContext_impl(xmlparseobject *self);
153 pyexpat_xmlparser_GetInputContext(xmlparseobject *self, PyObject *Py_UNUSED(ignored))
155 return pyexpat_xmlparser_GetInputContext_impl(self);
159 "ExternalEntityParserCreate($self, context, encoding=<unrepresentable>,\n"
169 pyexpat_xmlparser_ExternalEntityParserCreate_impl(xmlparseobject *self,
175 pyexpat_xmlparser_ExternalEntityParserCreate(xmlparseobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
223 return_value = pyexpat_xmlparser_ExternalEntityParserCreate_impl(self, cls, context, encoding);
230 "SetParamEntityParsing($self, flag, /)\n"
244 pyexpat_xmlparser_SetParamEntityParsing_impl(xmlparseobject *self, int flag);
247 pyexpat_xmlparser_SetParamEntityParsing(xmlparseobject *self, PyObject *arg)
256 return_value = pyexpat_xmlparser_SetParamEntityParsing_impl(self, flag);
265 "UseForeignDTD($self, flag=True, /)\n"
278 pyexpat_xmlparser_UseForeignDTD_impl(xmlparseobject *self, PyTypeObject *cls,
282 pyexpat_xmlparser_UseForeignDTD(xmlparseobject *self, PyTypeObject *cls, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames)
302 return_value = pyexpat_xmlparser_UseForeignDTD_impl(self, cls, flag);