Lines Matching refs:PyObject_CallMethod
239 ret = PyObject_CallMethod(file, (char *) "close", (char *) "()"); in xmlPythonFileCloseRaw()
269 ret = PyObject_CallMethod(file, (char *) "read", (char *) "(i)", len); in xmlPythonFileReadRaw()
334 ret = PyObject_CallMethod(file, (char *) "io_read", (char *) "(i)", len); in xmlPythonFileRead()
402 ret = PyObject_CallMethod(file, (char *) "io_write", (char *) "(O)", in xmlPythonFileWrite()
405 ret = PyObject_CallMethod(file, (char *) "write", (char *) "(O)", in xmlPythonFileWrite()
441 ret = PyObject_CallMethod(file, (char *) "io_close", (char *) "()"); in xmlPythonFileClose()
443 ret = PyObject_CallMethod(file, (char *) "flush", (char *) "()"); in xmlPythonFileClose()
915 result = PyObject_CallMethod(handler, (char *) "startElement", in pythonStartElement()
918 result = PyObject_CallMethod(handler, (char *) "start", in pythonStartElement()
939 PyObject_CallMethod(handler, (char *) "startDocument", NULL); in pythonStartDocument()
958 PyObject_CallMethod(handler, (char *) "endDocument", NULL); in pythonEndDocument()
980 result = PyObject_CallMethod(handler, (char *) "endElement", in pythonEndElement()
986 result = PyObject_CallMethod(handler, (char *) "end", in pythonEndElement()
1005 result = PyObject_CallMethod(handler, (char *) "reference", in pythonReference()
1030 result = PyObject_CallMethod(handler, (char *) "characters", in pythonCharacters()
1033 result = PyObject_CallMethod(handler, (char *) "data", in pythonCharacters()
1059 PyObject_CallMethod(handler, in pythonIgnorableWhitespace()
1064 PyObject_CallMethod(handler, (char *) "data", in pythonIgnorableWhitespace()
1082 result = PyObject_CallMethod(handler, (char *) in pythonProcessingInstruction()
1101 PyObject_CallMethod(handler, (char *) "comment", (char *) "s", in pythonComment()
1127 PyObject_CallMethod(handler, (char *) "warning", (char *) "s", in pythonWarning()
1153 PyObject_CallMethod(handler, (char *) "error", (char *) "s", in pythonError()
1179 PyObject_CallMethod(handler, (char *) "fatalError", in pythonFatalError()
1205 PyObject_CallMethod(handler, (char *) "cdataBlock", in pythonCdataBlock()
1209 PyObject_CallMethod(handler, (char *) "cdata", in pythonCdataBlock()
1232 PyObject_CallMethod(handler, (char *) "externalSubset", in pythonExternalSubset()
1251 result = PyObject_CallMethod(handler, (char *) "entityDecl", in pythonEntityDecl()
1273 result = PyObject_CallMethod(handler, (char *) "notationDecl", in pythonNotationDecl()
1311 result = PyObject_CallMethod(handler, (char *) "attributeDecl", in pythonAttributeDecl()
1337 result = PyObject_CallMethod(handler, (char *) "elementDecl", in pythonElementDecl()
1358 PyObject_CallMethod(handler, (char *) "unparsedEntityDecl", in pythonUnparsedEntityDecl()
1380 result = PyObject_CallMethod(handler, (char *) "internalSubset", in pythonInternalSubset()