Searched defs:libxml2 (Results 51 - 54 of 54) sorted by relevance

123

/vbox/src/libs/libxml2-2.6.31/
H A Dcheck-xsddata-test-suite.py8 import libxml2 namespace
11 libxml2.debugMemory(1)
30 libxml2.lineNumbersDefault(1)
38 libxml2.registerErrorHandler(callback, "")
70 mem = libxml2.debugMemory(1);
72 doc = libxml2.parseDoc(instance)
94 if mem != libxml2.debugMemory(1):
123 # mem = libxml2.debugMemory(1);
126 doc = libxml2.parseDoc(instance)
148 # if mem != libxml2
[all...]
H A Dgentest.py9 import libxml2 namespace
11 print "libxml2 python bindings not available, skipping testapi.c generation"
499 doc = libxml2.readFile(srcPref + 'doc/libxml2-api.xml', None, 0)
501 print "Failed to load doc/libxml2-api.xml"
632 * Main entry point of the tester for the full libxml2 module,
/vbox/src/libs/libxml2-2.6.31/python/
H A Ddrv_libxml2.py2 """ A SAX2 driver for libxml2, on top of it's XmlReader API
22 - EntityResolver (using libxml2.?)
23 - DTDHandler (if/when libxml2 exposes such node types)
24 - DeclHandler (if/when libxml2 exposes such node types)
58 # libxml2 returns strings as UTF8
67 import libxml2 namespace
69 raise SAXReaderNotAvailable("libxml2 not available: " \
73 """SAX Locator adapter for libxml2.xmlTextReaderLocator"""
120 if severity in (libxml2.PARSER_SEVERITY_VALIDITY_WARNING,
121 libxml2
[all...]
/vbox/src/libs/libxml2-2.6.31/xstc/
H A Dxstc.py10 import libxml2 namespace
274 self.initialMemUsed = libxml2.debugMemory(1)
275 libxml2.initParser()
276 libxml2.lineNumbersDefault(1)
277 libxml2.registerErrorHandler(handleError, self)
280 libxml2.schemaCleanupTypes()
281 libxml2.cleanupParser()
282 self.memLeak = libxml2.debugMemory(1) - self.initialMemUsed
287 err = libxml2.lastError()
293 if err.domain() == libxml2
[all...]

Completed in 46 milliseconds

123