Home | History | Annotate | Download | only in examples

Lines Matching defs:doc

27  * Returns the resulting doc with just the elements preserved.
31 xmlDocPtr doc;
62 doc = xmlTextReaderCurrentDoc(reader);
71 return(doc);
77 xmlDocPtr doc;
91 doc = extractFile(filename, (const xmlChar *) pattern);
92 if (doc != NULL) {
96 xmlDocDump(stdout, doc);
98 * don't forget to free up the doc
100 xmlFreeDoc(doc);