Lines Matching refs:fullname
694 * @fullname: the attribute name
703 xmlSAX2AttributeDecl(void *ctx, const xmlChar *elem, const xmlChar *fullname,
717 elem, fullname, type, def, defaultValue);
719 if ((xmlStrEqual(fullname, BAD_CAST "xml:id")) &&
730 name = xmlSplitQName(ctxt, fullname, &prefix);
1055 * @fullname: The attribute name, including namespace prefix
1065 xmlSAX2AttributeInternal(void *ctx, const xmlChar *fullname,
1076 name = xmlStrdup(fullname);
1083 name = xmlSplitQName(ctxt, fullname, &ns);
1088 fullname, NULL);
1092 fullname, NULL);
1098 name = xmlStrdup(fullname);
1117 fullname, value);
1328 ctxt->node, fullname, val);
1351 if (xmlStrEqual(fullname, BAD_CAST "xml:id")) {
1527 * @fullname: The element name, including namespace prefix
1533 xmlSAX2StartElement(void *ctx, const xmlChar *fullname, const xmlChar **atts)
1545 if ((ctx == NULL) || (fullname == NULL) || (ctxt->myDoc == NULL)) return;
1549 "SAX.xmlSAX2StartElement(%s)\n", fullname);
1570 name = xmlSplitQName(ctxt, fullname, &prefix);
2042 xmlChar *fullname;
2044 fullname = xmlBuildQName(localname, prefix, fn, 50);
2045 if (fullname != NULL) {
2049 ctxt->node, fullname, dup);
2053 if ((fullname != fn) && (fullname != localname))
2054 xmlFree(fullname);