• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-core/libxml2-src/

Lines Matching defs:doc

53     xmlDocPtr doc;
624 tmp = xmlSearchNs(cur->doc, cur, ns->prefix);
754 ns = xmlSearchNs(cur->doc, cur, prefix);
774 ns = xmlSearchNs(cur->doc, cur, NULL);
950 value = xmlNodeListGetString(ctx->doc, attr->children, 1);
1013 res = xmlNodeListGetString(ctx->doc, xml_base_attr->children, 1);
1025 tmp_str = xmlNodeListGetString(ctx->doc, attr->children, 1);
1751 * @doc: the XML document for canonization
1771 xmlC14NNewCtx(xmlDocPtr doc,
1778 if ((doc == NULL) || (buf == NULL)) {
1787 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1795 if (doc->charset != XML_CHAR_ENCODING_UTF8) {
1796 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1814 ctx->doc = doc;
1824 xmlC14NErr(ctx, (xmlNodePtr) doc, XML_C14N_CREATE_STACK,
1843 * @doc: the XML document for canonization
1865 xmlC14NExecute(xmlDocPtr doc, xmlC14NIsVisibleCallback is_visible_callback,
1873 if ((buf == NULL) || (doc == NULL)) {
1895 xmlC14NErr(NULL, (xmlNodePtr) doc, XML_C14N_REQUIRES_UTF8,
1900 ctx = xmlC14NNewCtx(doc, is_visible_callback, user_data,
1904 xmlC14NErr(NULL, (xmlNodePtr) doc, XML_C14N_CREATE_CTXT,
1919 if (doc->children != NULL) {
1920 ret = xmlC14NProcessNodeList(ctx, doc->children);
1947 * @doc: the XML document for canonization
1967 xmlC14NDocSaveTo(xmlDocPtr doc, xmlNodeSetPtr nodes,
1970 return(xmlC14NExecute(doc,
1982 * @doc: the XML document for canonization
2002 xmlC14NDocDumpMemory(xmlDocPtr doc, xmlNodeSetPtr nodes,
2010 xmlC14NErrParam("dumping doc to memory");
2028 ret = xmlC14NDocSaveTo(doc, nodes, mode, inclusive_ns_prefixes,
2031 xmlC14NErrInternal("saving doc to output buffer");
2051 * @doc: the XML document for canonization
2073 xmlC14NDocSave(xmlDocPtr doc, xmlNodeSetPtr nodes,
2081 xmlC14NErrParam("saving doc");
2101 ret = xmlC14NDocSaveTo(doc, nodes, mode, inclusive_ns_prefixes,