/external/libxml2/doc/examples/ |
index.py | 9 import libxml2 namespace 31 print "loading ../libxml2-api.xml" 32 api_doc = libxml2.parseFile("../libxml2-api.xml") 34 print "failed to parse ../libxml2-api.xml" 230 LDADD = $(RDL_LIBS) $(STATIC_BINARIES) $(top_builddir)/libxml2.la $(THREAD_LIBS) $(Z_LIBS) $(ICONV_LIBS) -lm $(WIN32_EXTRA_LIBADD)
|
/external/mesa3d/src/mesa/main/ |
APIspecutil.py | 28 import libxml2 namespace 47 doc = libxml2.readFile(filename, None, 48 libxml2.XML_PARSE_DTDLOAD + 49 libxml2.XML_PARSE_DTDVALID + 50 libxml2.XML_PARSE_NOBLANKS)
|
APIspec.py | 596 import libxml2 namespace 601 doc = libxml2.readFile(filename, None, 602 libxml2.XML_PARSE_DTDLOAD + 603 libxml2.XML_PARSE_DTDVALID + 604 libxml2.XML_PARSE_NOBLANKS)
|
/external/libxml2/ |
check-relaxng-test-suite.py | 8 import libxml2 namespace 11 libxml2.debugMemory(1) 31 libxml2.lineNumbersDefault(1) 39 libxml2.registerErrorHandler(callback, "") 63 # res = libxml2.parseFile(RES) 83 doc = libxml2.parseDoc(instance) 124 doc = libxml2.parseDoc(instance) 164 rngp = libxml2.relaxNGNewMemParserCtxt(schema, len(schema)) 190 rngp = libxml2.relaxNGNewMemParserCtxt(schema, len(schema)) 222 # name = libxml2.buildURI(name, dir [all...] |
check-relaxng-test-suite2.py | 8 import libxml2 namespace 11 libxml2.debugMemory(1) 29 libxml2.lineNumbersDefault(1) 50 # res = libxml2.parseFile(RES) 71 # mem = libxml2.debugMemory(1); 73 doc = libxml2.parseDoc(instance) 95 # if mem != libxml2.debugMemory(1): 124 # mem = libxml2.debugMemory(1); 127 doc = libxml2.parseDoc(instance) 149 # mem2 = libxml2.debugMemory(1 [all...] |
check-xml-test-suite.py | 7 import libxml2 namespace 38 libxml2.registerErrorHandler(errorHandler, None) 49 #libxml2.registerWarningHandler(warningHandler, None) 55 ctxt = libxml2.createFileParserCtxt(filename) 81 ctxt = libxml2.createFileParserCtxt(filename) 106 ctxt = libxml2.createFileParserCtxt(filename) 132 ctxt = libxml2.createFileParserCtxt(filename) 159 ctxt = libxml2.createFileParserCtxt(filename) 192 ctxt = libxml2.createFileParserCtxt(filename) 223 ctxt = libxml2.createFileParserCtxt(filename [all...] |
check-xsddata-test-suite.py | 8 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.debugMemory(1) [all...] |
gentest.py | 9 import libxml2 namespace 11 print "libxml2 python bindings not available, skipping testapi.c generation" 503 doc = libxml2.readFile(srcPref + 'doc/libxml2-api.xml', None, 0) 505 print "Failed to load doc/libxml2-api.xml" 636 * Main entry point of the tester for the full libxml2 module,
|
/external/libxml2/python/ |
drv_libxml2.py | 2 """ 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) 64 # libxml2 returns strings as UTF8 73 import libxml2 namespace 75 raise SAXReaderNotAvailable("libxml2 not available: " \ 79 """SAX Locator adapter for libxml2.xmlTextReaderLocator""" 126 if severity in (libxml2.PARSER_SEVERITY_VALIDITY_WARNING, 127 libxml2.PARSER_SEVERITY_WARNING) [all...] |
/external/libxml2/doc/ |
index.py | 9 # install mysqld, the python wrappers for mysql and libxml2, start mysqld 32 # the libxml2-api.xml API description, and make then accessible read-only 39 import libxml2 namespace 49 libxml2.registerErrorHandler(callback, None) 113 API="libxml2-api.xml" 675 doc = libxml2.parseFile(filename) 1031 doc = libxml2.parseFile(html) 1033 doc = libxml2.htmlParseFile(html, None) 1074 doc = libxml2.htmlParseFile(url, None); 1097 doc = libxml2.htmlParseFile(url, None) [all...] |
/external/libxml2/xstc/ |
xstc.py | 10 import libxml2 namespace 272 # Set up Libxml2. 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( [all...] |
/external/mesa3d/src/mapi/glapi/gen/ |
gl_XML.py | 28 import libxml2 namespace 34 doc = libxml2.readFile( file_name, None, libxml2.XML_PARSE_XINCLUDE + libxml2.XML_PARSE_NOBLANKS + libxml2.XML_PARSE_DTDVALID + libxml2.XML_PARSE_DTDATTR + libxml2.XML_PARSE_DTDLOAD + libxml2.XML_PARSE_NOENT )
|