• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/libxml2-2.7.2/

Lines Matching defs:doc

1703 	    fprintf(stderr, "SAX generated a doc !\n");
1967 static void walkDoc(xmlDocPtr doc) {
1977 root = xmlDocGetRootElement(doc);
1986 patternc = xmlPatterncompile((const xmlChar *) pattern, doc->dict,
2007 reader = xmlReaderWalker(doc);
2023 endTimer("walking through the doc");
2027 fprintf(stderr, "failed to walk through the doc\n");
2049 xmlDocPtr doc = NULL;
2063 doc = xmlNewDoc(BAD_CAST "1.0");
2064 n = xmlNewDocNode(doc, NULL, BAD_CAST "info", NULL);
2066 xmlDocSetRootElement(doc, n);
2095 doc = ctxt->myDoc;
2115 doc = htmlReadMemory((char *) base, info.st_size, filename,
2123 doc = htmlReadFile(filename, NULL, options);
2160 doc = ctxt->myDoc;
2164 xmlFreeDoc(doc);
2165 doc = NULL;
2173 doc = xmlReadFd(0, NULL, NULL, options);
2184 doc = xmlReadIO((xmlInputReadCallback) myRead,
2188 doc = xmlCtxtReadIO(rectxt,
2193 doc = NULL;
2203 doc = NULL;
2210 doc = xmlCtxtReadFile(ctxt, filename, NULL, options);
2229 doc = xmlReadMemory((char *) base, info.st_size,
2232 doc = xmlCtxtReadMemory(rectxt, (char *) base, info.st_size,
2247 doc = NULL;
2249 doc = xmlCtxtReadFile(ctxt, filename, NULL, options);
2259 doc = xmlCtxtReadFile(rectxt, filename, NULL, options);
2263 doc = xmlParseFile(filename);
2266 doc = xmlReadFile(filename, NULL, options);
2274 if (doc == NULL) {
2289 dtd = xmlGetIntSubset(doc);
2301 if (xmlXIncludeProcessFlags(doc, options) < 0)
2315 xmlXPathOrderDocElems(doc);
2316 xmlShell(doc, filename, xmlShellReadline, stdout);
2326 tmp = doc;
2330 doc = xmlCopyDoc(doc, 1);
2350 if (doc->children != NULL) {
2351 node = doc->children;
2372 walkDoc(doc);
2391 htmlSaveFile(output ? output : "-", doc);
2395 htmlSaveFileFormat(output ? output : "-", doc, encoding, 1);
2398 htmlSaveFileFormat(output ? output : "-", doc, encoding, 0);
2402 htmlSaveFileFormat(output ? output : "-", doc, NULL, 1);
2412 if (htmlDocDump(out, doc) < 0)
2432 size = xmlC14NDocDumpMemory(doc, NULL, 0, NULL, 1, &result);
2445 size = xmlC14NDocDumpMemory(doc, NULL, 1, NULL, 1, &result);
2462 xmlDocDumpFormatMemoryEnc(doc, &result, &len, encoding, 1);
2464 xmlDocDumpMemoryEnc(doc, &result, &len, encoding);
2468 xmlDocDumpFormatMemory(doc, &result, &len, 1);
2470 xmlDocDumpMemory(doc, &result, &len);
2483 xmlSaveFile(output ? output : "-", doc);
2487 ret = xmlSaveFormatFileEnc(output ? output : "-", doc,
2491 ret = xmlSaveFileEnc(output ? output : "-", doc,
2500 ret = xmlSaveFormatFile(output ? output : "-", doc, 1);
2514 if (xmlDocDump(out, doc) < 0)
2537 if (xmlSaveDoc(ctxt, doc) < 0) {
2559 xmlDebugDumpDocument(out, doc);
2612 if (!xmlValidateDtd(cvp, doc, dtd)) {
2644 if (!xmlValidateDocument(cvp, doc)) {
2678 ret = xmlSchematronValidateDoc(ctxt, doc);
2709 ret = xmlRelaxNGValidateDoc(ctxt, doc);
2737 ret = xmlSchemaValidateDoc(ctxt, doc);
2757 xmlDebugDumpEntities(stderr, doc);
2766 xmlFreeDoc(doc);
2844 printf("\t--nowrap : do not put HTML doc wrapper\n");
2891 printf("\t--auto : generate a small doc on the fly\n");
2901 printf("\t--walker : create a reader and walk though the resulting doc\n");