HomeSort by relevance Sort by last modified time
    Searched refs:api_doc (Results 1 - 2 of 2) sorted by null

  /external/libxml2/doc/examples/
index.py 21 api_doc = None variable
25 global api_doc
32 api_doc = libxml2.parseFile("../libxml2-api.xml")
39 global api_doc
41 if api_doc == None:
48 ctxt = api_doc.xpathNewContext()
  /external/libxml2/
testapi.c 31 static xmlDocPtr api_doc = NULL; variable
45 xmlFreeDoc(api_doc);
46 api_doc = NULL;
55 if (api_doc == NULL) {
56 api_doc = xmlReadMemory("<!DOCTYPE root [<!ELEMENT root EMPTY>]><root xmlns:h='http://example.com/' h:foo='bar'/>", 88, "root_test", NULL, 0);
60 return(api_doc);
67 if ((api_doc != NULL) && (api_doc->children != NULL) &&
68 (api_doc->children->type == XML_DTD_NODE))
69 api_dtd = (xmlDtdPtr) api_doc->children
    [all...]

Completed in 71 milliseconds