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

Lines Matching defs:doc

55     xmlDocPtr doc;
626 tmp = xmlSearchNs(cur->doc, cur, ns->prefix);
756 ns = xmlSearchNs(cur->doc, cur, prefix);
776 ns = xmlSearchNs(cur->doc, cur, NULL);
952 value = xmlNodeListGetString(ctx->doc, attr->children, 1);
1015 res = xmlNodeListGetString(ctx->doc, xml_base_attr->children, 1);
1027 tmp_str = xmlNodeListGetString(ctx->doc, attr->children, 1);
1753 * @doc: the XML document for canonization
1773 xmlC14NNewCtx(xmlDocPtr doc,
1780 if ((doc == NULL) || (buf == NULL)) {
1789 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1797 if (doc->charset != XML_CHAR_ENCODING_UTF8) {
1798 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1816 ctx->doc = doc;
1826 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_CREATE_STACK,
1845 * @doc: the XML document for canonization
1867 xmlC14NExecute(xmlDocPtr doc, xmlC14NIsVisibleCallback is_visible_callback,
1875 if ((buf == NULL) || (doc == NULL)) {
1897 xmlC14NErr(NULL, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1902 ctx = xmlC14NNewCtx(doc, is_visible_callback, user_data,
1906 xmlC14NErr(NULL, (xmlNodePtr) doc, XML_C14N_CREATE_CTXT,
1921 if (doc->children != NULL) {
1922 ret = xmlC14NProcessNodeList(ctx, doc->children);
1949 * @doc: the XML document for canonization
1969 xmlC14NDocSaveTo(xmlDocPtr doc, xmlNodeSetPtr nodes,
1972 return(xmlC14NExecute(doc,
1984 * @doc: the XML document for canonization
2004 xmlC14NDocDumpMemory(xmlDocPtr doc, xmlNodeSetPtr nodes,
2012 xmlC14NErrParam("dumping doc to memory");
2030 ret = xmlC14NDocSaveTo(doc, nodes, mode, inclusive_ns_prefixes,
2033 xmlC14NErrInternal("saving doc to output buffer");
2053 * @doc: the XML document for canonization
2075 xmlC14NDocSave(xmlDocPtr doc, xmlNodeSetPtr nodes,
2083 xmlC14NErrParam("saving doc");
2103 ret = xmlC14NDocSaveTo(doc, nodes, mode, inclusive_ns_prefixes,