• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/libxml2-26/libxml2/

Lines Matching defs:doc

43  * @doc:  the document
50 htmlGetMetaEncoding(htmlDocPtr doc) {
55 if (doc == NULL)
57 cur = doc->children;
154 * @doc: the document
164 htmlSetMetaEncoding(htmlDocPtr doc, const xmlChar *encoding) {
171 if (doc == NULL)
184 cur = doc->children;
275 meta = xmlNewDocNode(doc, NULL, BAD_CAST"meta", NULL);
399 * @doc: the document
408 htmlBufNodeDumpFormat(xmlBufPtr buf, xmlDocPtr doc, xmlNodePtr cur,
434 htmlNodeDumpFormatOutput(outbuf, doc, cur, NULL, format);
443 * @doc: the document
452 htmlNodeDump(xmlBufferPtr buf, xmlDocPtr doc, xmlNodePtr cur) {
464 ret = htmlBufNodeDumpFormat(buffer, doc, cur, 1);
476 * @doc: the document
483 * TODO: if encoding == NULL try to save in the doc encoding
488 htmlNodeDumpFileFormat(FILE *out, xmlDocPtr doc,
521 htmlNodeDumpFormatOutput(buf, doc, cur, encoding, format);
530 * @doc: the document
537 htmlNodeDumpFile(FILE *out, xmlDocPtr doc, xmlNodePtr cur) {
538 htmlNodeDumpFileFormat(out, doc, cur, NULL, 1);
646 * @doc: the document
654 htmlDtdDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
656 xmlDtdPtr cur = doc->intSubset;
659 htmlSaveErr(XML_SAVE_NO_DOCTYPE, (xmlNodePtr) doc, NULL);
681 * @doc: the document
688 htmlAttrDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur,
709 value = xmlNodeListGetString(doc, cur->children, 0);
748 * @doc: the document
755 htmlAttrListDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc, xmlAttrPtr cur, const char *encoding) {
760 htmlAttrDumpOutput(buf, doc, cur, encoding);
770 * @doc: the document
778 htmlNodeListDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
784 htmlNodeDumpFormatOutput(buf, doc, cur, encoding, format);
792 * @doc: the document
800 htmlNodeDumpFormatOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
820 htmlAttrDumpOutput(buf, doc, (xmlAttrPtr) cur, encoding);
832 buffer = xmlEncodeEntitiesReentrant(doc, cur->content);
893 htmlAttrListDumpOutput(buf, doc, cur->properties, encoding);
951 htmlNodeListDumpOutput(buf, doc, cur->children, encoding, format);
981 * @doc: the document
989 htmlNodeDumpOutput(xmlOutputBufferPtr buf, xmlDocPtr doc,
991 htmlNodeDumpFormatOutput(buf, doc, cur, encoding, 1);