Lines Matching defs:libxml2
9 import libxml2
12 libxml2.debugMemory(1)
28 libxml2.registerErrorHandler(callback, "")
35 reader = libxml2.newTextReaderFilename(file)
37 reader.SetParserProp(libxml2.PARSER_VALIDATE, 1)
82 input = libxml2.inputBuffer(StringIO.StringIO(s))
84 reader.SetParserProp(libxml2.PARSER_LOADDTD,1)
85 reader.SetParserProp(libxml2.PARSER_DEFAULTATTRS,1)
86 reader.SetParserProp(libxml2.PARSER_SUBST_ENTITIES,1)
87 reader.SetParserProp(libxml2.PARSER_VALIDATE,1)
130 libxml2.setEntityLoader(myResolver)
132 input = libxml2.inputBuffer(StringIO.StringIO(s))
134 reader.SetParserProp(libxml2.PARSER_LOADDTD,1)
135 reader.SetParserProp(libxml2.PARSER_DEFAULTATTRS,1)
136 reader.SetParserProp(libxml2.PARSER_SUBST_ENTITIES,1)
137 reader.SetParserProp(libxml2.PARSER_VALIDATE,1)
186 input = libxml2.inputBuffer(StringIO.StringIO(s))
188 reader.SetParserProp(libxml2.PARSER_LOADDTD,1)
189 reader.SetParserProp(libxml2.PARSER_DEFAULTATTRS,1)
190 reader.SetParserProp(libxml2.PARSER_SUBST_ENTITIES,1)
191 reader.SetParserProp(libxml2.PARSER_VALIDATE,1)
231 input = libxml2.inputBuffer(StringIO.StringIO(s))
233 reader.SetParserProp(libxml2.PARSER_VALIDATE,1)
251 libxml2.cleanupParser()
252 if libxml2.debugMemory(1) == 0:
255 print "Memory leak %d bytes" % (libxml2.debugMemory(1))
256 libxml2.dumpMemory()