Home | History | Annotate | Download | only in tutorial

Lines Matching refs:doc

7 	xmlDocPtr doc;
8 doc = xmlParseFile(docname);
10 if (doc == NULL ) {
15 return doc;
19 getnodeset (xmlDocPtr doc, xmlChar *xpath){
24 context = xmlXPathNewContext(doc);
46 xmlDocPtr doc;
59 doc = getdoc(docname);
60 result = getnodeset (doc, xpath);
64 keyword = xmlNodeListGetString(doc, nodeset->nodeTab[i]->xmlChildrenNode, 1);
70 xmlFreeDoc(doc);