HomeSort by relevance Sort by last modified time
    Searched full:libxml2 (Results 1 - 25 of 427) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/libxml2/doc/devhelp/
Makefile.am 1 devhelpdir = $(datadir)/gtk-doc/html/libxml2
4 libxml2.devhelp \
14 libxml2-c14n.html \
15 libxml2-catalog.html \
16 libxml2-chvalid.html \
17 libxml2-debugXML.html \
18 libxml2-dict.html \
19 libxml2-DOCBparser.html \
20 libxml2-encoding.html \
21 libxml2-entities.html
    [all...]
libxml2.devhelp 2 <book xmlns="http://www.devhelp.net/book" title="libxml2 Reference Manual" link="index.html" author="" name="libxml2">
5 <sub name="DOCBparser" link="libxml2-DOCBparser.html"/>
6 <sub name="HTMLparser" link="libxml2-HTMLparser.html"/>
7 <sub name="HTMLtree" link="libxml2-HTMLtree.html"/>
8 <sub name="SAX" link="libxml2-SAX.html"/>
9 <sub name="SAX2" link="libxml2-SAX2.html"/>
10 <sub name="c14n" link="libxml2-c14n.html"/>
11 <sub name="catalog" link="libxml2-catalog.html"/>
12 <sub name="chvalid" link="libxml2-chvalid.html"/
    [all...]
general.html 5 <title>libxml2: </title>
6 <meta name="generator" content="Libxml2 devhelp stylesheet"/>
7 <link rel="start" href="index.html" title="libxml2 Reference Manual"/>
8 <link rel="up" href="index.html" title="libxml2 Reference Manual"/>
10 <link rel="chapter" href="index.html" title="libxml2 Reference Manual"/>
26 <a accesskey="n" href="libxml2-DOCBparser.html">
30 <th width="100%" align="center">libxml2 Reference Manual</th>
34 <span class="refentrytitle">libxml2 API Modules</span>
36 <p><a href="libxml2-DOCBparser.html">DOCBparser</a> - old DocBook SGML parser<br/><a href="libxml2-HTMLparser.html">HTMLparser</a> - interface for an HTML 4.0 non-verifying parser<br/><a href="libx (…)
    [all...]
  /external/libxml2/
README.version 1 URL: ftp://xmlsoft.org/libxml2/libxml2-2.9.2.tar.gz
libxml2-config.cmake.in 0 # libxml2-config.cmake
4 # Libxml2 cmake module.
9 # LIBXML2_INCLUDE_DIRS - Directory where libxml2 headers are located.
11 # LIBXML2_VERSION_MAJOR - The major version of libxml2.
12 # LIBXML2_VERSION_MINOR - The minor version of libxml2.
13 # LIBXML2_VERSION_PATCH - The patch version of libxml2.
15 # LIBXML2_MODULES - whether libxml2 as dso support
24 set(LIBXML2_INCLUDE_DIRS ${_libxml2_rootdir}/include ${_libxml2_rootdir}/include/libxml2)
47 # whether libxml2 has dso support
  /external/libxml2/python/tests/
inbuf.py 3 import libxml2 namespace
12 libxml2.debugMemory(1)
17 buf = libxml2.inputBuffer(f)
24 libxml2.cleanupParser()
25 if libxml2.debugMemory(1) == 0:
28 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
29 libxml2.dumpMemory()
xpathns.py 3 import libxml2 namespace
8 libxml2.debugMemory(1)
10 d = libxml2.parseDoc("<a:a xmlns:a='urn:whatevar'/>")
23 libxml2.cleanupParser()
25 if libxml2.debugMemory(1) == 0:
28 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
29 libxml2.dumpMemory()
dtdvalid.py 2 import libxml2 namespace
6 libxml2.debugMemory(1)
12 dtd = libxml2.parseDTD(None, 'test.dtd')
13 ctxt = libxml2.newValidCtxt()
14 doc = libxml2.parseDoc(instance)
26 libxml2.cleanupParser()
27 if libxml2.debugMemory(1) == 0:
30 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
31 libxml2.dumpMemory()
resolver.py 3 import libxml2 namespace
12 libxml2.debugMemory(1)
17 libxml2.setEntityLoader(myResolver)
19 doc = libxml2.parseFile("doesnotexist.xml")
28 doc = libxml2.parseFile("doesnotexist.xml")
38 libxml2.cleanupParser()
39 if libxml2.debugMemory(1) == 0:
42 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
43 libxml2.dumpMemory()
tstmem.py 2 import libxml2 namespace
10 libxml2.debugMemory(1)
16 dtd = libxml2.parseDTD(None, 'test.dtd')
17 ctxt = libxml2.newValidCtxt()
19 doc = libxml2.parseDoc(instance)
31 libxml2.cleanupParser()
32 if libxml2.debugMemory(1) == 0:
35 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
36 libxml2.dumpMemory()
push.py 3 import libxml2 namespace
6 libxml2.debugMemory(1)
8 ctxt = libxml2.createPushParser(None, "<foo", 4, "test.xml")
22 ctxt = libxml2.createPushParser(None, "<foo", 4, "test.xml")
30 libxml2.cleanupParser()
31 if libxml2.debugMemory(1) == 0:
34 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
35 libxml2.dumpMemory()
error.py 7 import libxml2 namespace
10 libxml2.debugMemory(1)
20 libxml2.registerErrorHandler(callback, "-->")
22 doc = libxml2.parseFile("missing.xml")
23 except libxml2.parserError:
39 doc = libxml2.parseFile("missing.xml")
40 except libxml2.parserError:
46 libxml2.cleanupParser()
47 if libxml2.debugMemory(1) == 0:
50 print("Memory leak %d bytes" % (libxml2.debugMemory(1))
    [all...]
attribs.py 3 import libxml2 namespace
6 libxml2.debugMemory(1)
11 doc = libxml2.parseDoc(
29 libxml2.cleanupParser()
30 if libxml2.debugMemory(1) == 0:
33 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
34 libxml2.dumpMemory()
reader8.py 6 import libxml2 namespace
9 libxml2.debugMemory(1)
19 reader = libxml2.readerForDoc(docstr, "test1", None, 0)
31 libxml2.cleanupParser()
32 if libxml2.debugMemory(1) == 0:
35 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
36 libxml2.dumpMemory()
regexp.py 2 import libxml2 namespace
5 libxml2.debugMemory(1)
7 re = libxml2.regexpCompile("a|b")
27 libxml2.cleanupParser()
28 if libxml2.debugMemory(1) == 0:
31 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
32 libxml2.dumpMemory()
tst.py 3 import libxml2 namespace
6 libxml2.debugMemory(1)
8 doc = libxml2.parseFile("tst.xml")
23 libxml2.cleanupParser()
24 if libxml2.debugMemory(1) == 0:
27 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
28 libxml2.dumpMemory()
tstLastError.py 4 import libxml2 namespace
13 libxml2.debugMemory(1)
16 libxml2.cleanupParser()
17 if libxml2.debugMemory(1) != 0:
18 libxml2.dumpMemory()
19 self.fail("Memory leak %d bytes" % (libxml2.debugMemory(1),))
25 when the exception is raised, check the libxml2.lastError for
28 libxml2.registerErrorHandler(None,None)
32 e = libxml2.lastError()
54 self.failUnlessXmlError(libxml2.readFile
    [all...]
validDTD.py 2 import libxml2 namespace
19 libxml2.debugMemory(1)
28 dtd = libxml2.parseDTD(None, 'test.dtd')
29 ctxt = libxml2.newValidCtxt()
34 doc = libxml2.parseDoc(valid)
42 doc = libxml2.parseDoc(invalid)
53 libxml2.cleanupParser()
54 if libxml2.debugMemory(1) == 0:
57 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
58 libxml2.dumpMemory(
    [all...]
relaxng.py 2 import libxml2 namespace
6 libxml2.debugMemory(1)
26 rngp = libxml2.relaxNGNewMemParserCtxt(schema, len(schema))
29 doc = libxml2.parseDoc(instance)
39 libxml2.relaxNGCleanupTypes()
42 libxml2.cleanupParser()
43 if libxml2.debugMemory(1) == 0:
46 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
47 libxml2.dumpMemory()
schema.py 2 import libxml2 namespace
6 libxml2.debugMemory(1)
30 ctxt_parser = libxml2.schemaNewMemParserCtxt(schema, len(schema))
33 doc = libxml2.parseDoc(instance)
43 libxml2.schemaCleanupTypes()
46 libxml2.cleanupParser()
47 if libxml2.debugMemory(1) == 0:
50 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
51 libxml2.dumpMemory()
xpathext.py 3 import libxml2 namespace
6 libxml2.debugMemory(1)
14 doc = libxml2.parseFile("tst.xml")
24 libxml2.registerXPathFunction(ctxt._o, "foo", None, foo)
25 libxml2.registerXPathFunction(ctxt._o, "bar", None, bar)
44 libxml2.cleanupParser()
45 if libxml2.debugMemory(1) == 0:
48 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
49 libxml2.dumpMemory()
xpathret.py 3 import libxml2 namespace
6 libxml2.debugMemory(1)
11 mydoc = libxml2.newDoc("1.0")
25 doc = libxml2.parseFile("tst.xml")
27 libxml2.registerXPathFunction(ctxt._o, "foo", None, foo)
52 libxml2.cleanupParser()
53 if libxml2.debugMemory(1) == 0:
56 print("Memory leak %d bytes" % (libxml2.debugMemory(1)))
57 libxml2.dumpMemory()
validate.py 3 import libxml2 namespace
6 libxml2.debugMemory(1)
8 ctxt = libxml2.createFileParserCtxt("valid.xml")
28 ctxt = libxml2.createFileParserCtxt("valid.xml")
43 libxml2.registerErrorHandler(noerr, None)
45 ctxt = libxml2.createFileParserCtxt("invalid.xml")
64 ctxt = libxml2.createFileParserCtxt("invalid.xml")
77 libxml2.cleanupParser()
78 if libxml2.debugMemory(1) == 0:
81 print("Memory leak %d bytes" % (libxml2.debugMemory(1))
    [all...]
  /external/libxml2/python/
Makefile.am 1 # Makefile for libxml2 python library
6 docsdir = $(datadir)/doc/libxml2-python-$(LIBXML_VERSION)
13 libxml2-export.c \
14 libxml2-python-api.xml \
26 libxml2mod_la_SOURCES = libxml.c libxml_wrap.h libxml2-py.h libxml2-py.c types.c
28 $(top_builddir)/libxml2.la $(CYGWIN_EXTRA_PYTHON_LIBADD) $(WIN32_EXTRA_PYTHON_LIBADD) $(PYTHON_LIBS)
30 BUILT_SOURCES = libxml2-export.c libxml2-py.h libxml2-py.
    [all...]
README 1 Module libxml2-python
4 This is the libxml2 python module, providing access to the
5 libxml2 and libxslt (if available) libraries. For general
16 Binaries packages of the libxml2 and libxslt libraries can
23 of the libxml2 and libxslt Python binding code, but as
25 The main sources are the libxml2 and libxslt tar.gz found on
27 those modules are not generated from the libxml2-python
31 http://rpmfind.net/linux/rpm2html/search.php?query=libxml2-python

Completed in 124 milliseconds

1 2 3 4 5 6 7 8 91011>>