• Home
  • Raw
  • Download

Lines Matching refs:PyObject_CallMethod

213     ret = PyObject_CallMethod(file, (char *) "close", (char *) "()");  in xmlPythonFileCloseRaw()
240 ret = PyObject_CallMethod(file, (char *) "read", (char *) "(i)", len); in xmlPythonFileReadRaw()
302 ret = PyObject_CallMethod(file, (char *) "io_read", (char *) "(i)", len); in xmlPythonFileRead()
368 ret = PyObject_CallMethod(file, (char *) "io_write", (char *) "(O)", in xmlPythonFileWrite()
371 ret = PyObject_CallMethod(file, (char *) "write", (char *) "(O)", in xmlPythonFileWrite()
405 ret = PyObject_CallMethod(file, (char *) "io_close", (char *) "()"); in xmlPythonFileClose()
407 ret = PyObject_CallMethod(file, (char *) "flush", (char *) "()"); in xmlPythonFileClose()
864 result = PyObject_CallMethod(handler, (char *) "startElement", in pythonStartElement()
867 result = PyObject_CallMethod(handler, (char *) "start", in pythonStartElement()
885 PyObject_CallMethod(handler, (char *) "startDocument", NULL); in pythonStartDocument()
901 PyObject_CallMethod(handler, (char *) "endDocument", NULL); in pythonEndDocument()
920 result = PyObject_CallMethod(handler, (char *) "endElement", in pythonEndElement()
926 result = PyObject_CallMethod(handler, (char *) "end", in pythonEndElement()
942 result = PyObject_CallMethod(handler, (char *) "reference", in pythonReference()
964 result = PyObject_CallMethod(handler, (char *) "characters", in pythonCharacters()
967 result = PyObject_CallMethod(handler, (char *) "data", in pythonCharacters()
990 PyObject_CallMethod(handler, in pythonIgnorableWhitespace()
995 PyObject_CallMethod(handler, (char *) "data", in pythonIgnorableWhitespace()
1010 result = PyObject_CallMethod(handler, (char *) in pythonProcessingInstruction()
1026 PyObject_CallMethod(handler, (char *) "comment", (char *) "s", in pythonComment()
1049 PyObject_CallMethod(handler, (char *) "warning", (char *) "s", in pythonWarning()
1072 PyObject_CallMethod(handler, (char *) "error", (char *) "s", in pythonError()
1095 PyObject_CallMethod(handler, (char *) "fatalError", in pythonFatalError()
1118 PyObject_CallMethod(handler, (char *) "cdataBlock", in pythonCdataBlock()
1122 PyObject_CallMethod(handler, (char *) "cdata", in pythonCdataBlock()
1141 PyObject_CallMethod(handler, (char *) "externalSubset", in pythonExternalSubset()
1160 result = PyObject_CallMethod(handler, (char *) "entityDecl", in pythonEntityDecl()
1182 result = PyObject_CallMethod(handler, (char *) "notationDecl", in pythonNotationDecl()
1220 result = PyObject_CallMethod(handler, (char *) "attributeDecl", in pythonAttributeDecl()
1246 result = PyObject_CallMethod(handler, (char *) "elementDecl", in pythonElementDecl()
1267 PyObject_CallMethod(handler, (char *) "unparsedEntityDecl", in pythonUnparsedEntityDecl()
1285 result = PyObject_CallMethod(handler, (char *) "internalSubset", in pythonInternalSubset()