Lines Matching full:info

6       <info>Register a Python written function to the XPath interpreter</info>
7 <return type='int' info="1 in case of success, 0 or -1 in case of error"/>
8 <arg name='ctx' type='xmlXPathContextPtr' info='the xpathContext'/>
9 <arg name='name' type='xmlChar *' info='the function name'/>
10 <arg name='ns_uri' type='xmlChar *' info='the namespace or NULL'/>
11 <arg name='f' type='pythonObject' info='the python function'/>
15 <info>Register a variable with the XPath context</info>
16 <return type='int' info="1 in case of success, 0 or -1 in case of error"/>
17 <arg name='ctx' type='xmlXPathContextPtr' info='the xpathContext'/>
18 <arg name='name' type='xmlChar *' info='the variable name'/>
19 <arg name='ns_uri' type='xmlChar *' info='the namespace or NULL'/>
20 <arg name='value' type='pythonObject' info='the value'/>
23 <info>Create a new Node</info>
24 <return type='xmlNodePtr' info="A new element node"/>
25 <arg name='name' type='xmlChar *' info='the node name'/>
28 …<info>Create a progressive XML parser context to build either an event flow if the SAX object is n…
29 <return type='xmlParserCtxtPtr' info="the parser context or None in case of error"/>
30 <arg name='SAX' type='pythonObject' info='the SAX callback object or None'/>
31 <arg name='chunk' type='xmlChar *' info='the initial data'/>
32 <arg name='size' type='int' info='the size of the initial data'/>
33 <arg name='URI' type='xmlChar *' info='The URI used for base computations'/>
37 …<info>Create a progressive HTML parser context to build either an event flow if the SAX object is …
38 <return type='xmlParserCtxtPtr' info="the parser context or None in case of error"/>
39 <arg name='SAX' type='pythonObject' info='the SAX callback object or None'/>
40 <arg name='chunk' type='xmlChar *' info='the initial data'/>
41 <arg name='size' type='int' info='the size of the initial data'/>
42 <arg name='URI' type='xmlChar *' info='The URI used for base computations'/>
45 …<info>Interface to parse an XML file or resource pointed by an URI to build an event flow to the S…
47 <arg name='SAX' type='pythonObject' info='the SAX callback object or None'/>
48 <arg name='URI' type='xmlChar *' info='The URI of the resource'/>
49 <arg name='recover' type='int' info='allow recovery in case of error'/>
53 …<info>Interface to parse an HTML file or resource pointed by an URI to build an event flow to the …
55 <arg name='SAX' type='pythonObject' info='the SAX callback object or None'/>
56 <arg name='URI' type='xmlChar *' info='The URI of the resource'/>
57 <arg name='encoding' type='const char *' info='encoding or None'/>
60 <info>Create a libxml2 output buffer from a Python file</info>
61 <return type='xmlOutputBufferPtr' info="the output buffer"/>
62 <arg name='file' type='pythonObject' info='the Python file'/>
63 <arg name='encoding' type='xmlChar *' info='an optional encoding'/>
66 <info>Create a libxml2 input buffer from a Python file</info>
67 <return type='xmlParserInputBufferPtr' info="the input buffer"/>
68 <arg name='file' type='pythonObject' info='the Python file'/>
69 <arg name='encoding' type='xmlChar *' info='an optional encoding'/>
72 <info>Set the entity resolver as a python function</info>
73 <return type='int' info="0 in case of success, -1 for error"/>
74 <arg name='resolver' type='pythonObject' info='the Python function'/>
78 <info>Get the document tree from a parser context.</info>
79 <return type='xmlDocPtr' info="the document tree" field="myDoc"/>
80 <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/>
83 <info>Get the well formed information from a parser context.</info>
84 <return type='int' info="the wellFormed field" field="wellFormed"/>
85 <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/>
88 <info>Get the validity information from a parser context.</info>
89 <return type='int' info="the valid field" field="valid"/>
90 <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/>
93 <info>Switch the parser to validation mode.</info>
95 <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/>
96 <arg name='validate' type='int' info='1 to activate validation'/>
99 <info>Switch the parser to replace entities.</info>
101 <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/>
102 <arg name='replaceEntities' type='int' info='1 to replace entities'/>
105 <info>Switch the parser to be pedantic.</info>
107 <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/>
108 <arg name='pedantic' type='int' info='1 to run in pedantic mode'/>
111 <info>Switch the parser to load the DTD without validating.</info>
113 <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/>
114 <arg name='loadsubset' type='int' info='1 to load the DTD'/>
117 <info>Switch on the generation of line number for elements nodes.</info>
119 <arg name='ctxt' type='xmlParserCtxtPtr' info='the parser context'/>
120 <arg name='linenumbers' type='int' info='1 to save line numbers'/>
123info>Switch on the generation of line number for elements nodes. Also returns the number of bytes …
124 <return type='int' info="returns the number of bytes allocated and not freed"/>
125 <arg name='activate' type='int' info='1 switch on memory debugging 0 switch it off'/>
129 <info>Get the namespace of a node</info>
130 <return type='xmlNsPtr' info="The namespace or None"/>
131 <arg name='node' type='xmlNodePtr' info='the node'/>
134 <info>Get the namespace of a node</info>
135 <return type='xmlNsPtr' info="The namespace or None"/>
136 <arg name='node' type='xmlNodePtr' info='the node'/>
141 <info>Get the xpathContext from an xpathParserContext</info>
142 <return type='xmlXPathContextPtr' info="The XPath context" field="context"/>
143 <arg name='ctxt' type='xmlXPathParserContextPtr' info='the XPath parser context'/>
147 <info>Get the doc from an xpathContext</info>
148 <return type='xmlDocPtr' info="The doc context" field="doc"/>
149 <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
153 <info>Get the current node from an xpathContext</info>
154 <return type='xmlNodePtr' info="The node context" field="node"/>
155 <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
159 <info>Set the doc of an xpathContext</info>
161 <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
162 <arg name="doc" type='xmlDocPtr' info="The doc context"/>
166 <info>Set the current node of an xpathContext</info>
168 <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
169 <arg name="node" type='xmlNodePtr' info="The node context"/>
173 <info>Get the current node from an xpathContext</info>
174 <return type='int' info="The node context" field="proximityPosition"/>
175 <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
179 <info>Get the current node from an xpathContext</info>
180 <return type='int' info="The node context" field="contextSize"/>
181 <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
185 <info>Get the current function name xpathContext</info>
186 <return type='const xmlChar *' info="The function name" field="function"/>
187 <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
191 <info>Get the current function name URI xpathContext</info>
192 <return type='const xmlChar *' info="The function name URI" field="functionURI"/>
193 <arg name='ctxt' type='xmlXPathContextPtr' info='the XPath context'/>
197 <info>Get the scheme part from an URI</info>
198 <return type='const char *' info="The URI scheme" field="scheme"/>
199 <arg name='URI' type='xmlURIPtr' info='the URI'/>
202 <info>Set the scheme part of an URI.</info>
204 <arg name='URI' type='xmlURIPtr' info='the URI'/>
205 <arg name='scheme' type='char *' info='The URI scheme part'/>
208 <info>Get the opaque part from an URI</info>
209 <return type='const char *' info="The URI opaque" field="opaque"/>
210 <arg name='URI' type='xmlURIPtr' info='the URI'/>
213 <info>Set the opaque part of an URI.</info>
215 <arg name='URI' type='xmlURIPtr' info='the URI'/>
216 <arg name='opaque' type='char *' info='The URI opaque part'/>
219 <info>Get the authority part from an URI</info>
220 <return type='const char *' info="The URI authority" field="authority"/>
221 <arg name='URI' type='xmlURIPtr' info='the URI'/>
224 <info>Set the authority part of an URI.</info>
226 <arg name='URI' type='xmlURIPtr' info='the URI'/>
227 <arg name='authority' type='char *' info='The URI authority part'/>
230 <info>Get the server part from an URI</info>
231 <return type='const char *' info="The URI server" field="server"/>
232 <arg name='URI' type='xmlURIPtr' info='the URI'/>
235 <info>Set the server part of an URI.</info>
237 <arg name='URI' type='xmlURIPtr' info='the URI'/>
238 <arg name='server' type='char *' info='The URI server part'/>
241 <info>Get the user part from an URI</info>
242 <return type='const char *' info="The URI user" field="user"/>
243 <arg name='URI' type='xmlURIPtr' info='the URI'/>
246 <info>Set the user part of an URI.</info>
248 <arg name='URI' type='xmlURIPtr' info='the URI'/>
249 <arg name='user' type='char *' info='The URI user part'/>
252 <info>Get the path part from an URI</info>
253 <return type='const char *' info="The URI path" field="path"/>
254 <arg name='URI' type='xmlURIPtr' info='the URI'/>
257 <info>Set the path part of an URI.</info>
259 <arg name='URI' type='xmlURIPtr' info='the URI'/>
260 <arg name='path' type='char *' info='The URI path part'/>
263 <info>Get the query part from an URI</info>
264 <return type='const char *' info="The URI query" field="query"/>
265 <arg name='URI' type='xmlURIPtr' info='the URI'/>
268 <info>Set the query part of an URI.</info>
270 <arg name='URI' type='xmlURIPtr' info='the URI'/>
271 <arg name='query' type='char *' info='The URI query part'/>
274 <info>Get the raw query part from an URI (i.e. the unescaped form).</info>
275 <return type='const char *' info="The URI query" field="query_raw"/>
276 <arg name='URI' type='xmlURIPtr' info='the URI'/>
279 <info>Set the raw query part of an URI (i.e. the unescaped form).</info>
281 <arg name='URI' type='xmlURIPtr' info='the URI'/>
282 <arg name='query_raw' type='char *' info='The raw URI query part'/>
285 <info>Get the fragment part from an URI</info>
286 <return type='const char *' info="The URI fragment" field="fragment"/>
287 <arg name='URI' type='xmlURIPtr' info='the URI'/>
290 <info>Set the fragment part of an URI.</info>
292 <arg name='URI' type='xmlURIPtr' info='the URI'/>
293 <arg name='fragment' type='char *' info='The URI fragment part'/>
296 <info>Get the port part from an URI</info>
297 <return type='int' info="The URI port" field="port"/>
298 <arg name='URI' type='xmlURIPtr' info='the URI'/>
301 <info>Set the port part of an URI.</info>
303 <arg name='URI' type='xmlURIPtr' info='the URI'/>
304 <arg name='port' type='int' info='The URI port part'/>
308 <info>What part of the library raised this error</info>
309 <return type='int' info="The error domain" field="domain"/>
310 <arg name='Error' type='xmlErrorPtr' info='the Error'/>
313 <info>The error code, e.g. an xmlParserError</info>
314 <return type='int' info="The error code" field="code"/>
315 <arg name='Error' type='xmlErrorPtr' info='the Error'/>
318 <info>human-readable informative error message</info>
319 <return type='const char *' info="The error message" field="message"/>
320 <arg name='Error' type='xmlErrorPtr' info='the Error'/>
323 <info>how consequent is the error</info>
324 <return type='int' info="The error level" field="level"/>
325 <arg name='Error' type='xmlErrorPtr' info='the Error'/>
328 <info>the filename</info>
329 <return type='const char *' info="The error file" field="file"/>
330 <arg name='Error' type='xmlErrorPtr' info='the Error'/>
333 <info>the line number if available</info>
334 <return type='int' info="The error line" field="line"/>
335 <arg name='Error' type='xmlErrorPtr' info='the Error'/>
338info>Cleanup function for the XML library. It tries to reclaim all parsing related global memory a…
342 <info>Returns the total amount of memory allocated by libxml2</info>
343 <return type='int' info='number of bytes allocated'/>