Lines Matching refs:fullname

733 xmlSAX2AttributeDecl(void *ctx, const xmlChar *elem, const xmlChar *fullname,  in xmlSAX2AttributeDecl()  argument
747 elem, fullname, type, def, defaultValue); in xmlSAX2AttributeDecl()
749 if ((xmlStrEqual(fullname, BAD_CAST "xml:id")) && in xmlSAX2AttributeDecl()
760 name = xmlSplitQName(ctxt, fullname, &prefix); in xmlSAX2AttributeDecl()
1095 xmlSAX2AttributeInternal(void *ctx, const xmlChar *fullname, in xmlSAX2AttributeInternal() argument
1106 name = xmlStrdup(fullname); in xmlSAX2AttributeInternal()
1113 name = xmlSplitQName(ctxt, fullname, &ns); in xmlSAX2AttributeInternal()
1118 fullname, NULL); in xmlSAX2AttributeInternal()
1122 fullname, NULL); in xmlSAX2AttributeInternal()
1128 name = xmlStrdup(fullname); in xmlSAX2AttributeInternal()
1140 (value == NULL) && (htmlIsBooleanAttr(fullname))) { in xmlSAX2AttributeInternal()
1141 nval = xmlStrdup(fullname); in xmlSAX2AttributeInternal()
1155 fullname, value); in xmlSAX2AttributeInternal()
1375 ctxt->node, fullname, val); in xmlSAX2AttributeInternal()
1398 if (xmlStrEqual(fullname, BAD_CAST "xml:id")) { in xmlSAX2AttributeInternal()
1585 xmlSAX2StartElement(void *ctx, const xmlChar *fullname, const xmlChar **atts) in xmlSAX2StartElement() argument
1597 if ((ctx == NULL) || (fullname == NULL) || (ctxt->myDoc == NULL)) return; in xmlSAX2StartElement()
1601 "SAX.xmlSAX2StartElement(%s)\n", fullname); in xmlSAX2StartElement()
1622 name = xmlSplitQName(ctxt, fullname, &prefix); in xmlSAX2StartElement()
2102 xmlChar *fullname; in xmlSAX2AttributeNs() local
2104 fullname = xmlBuildQName(localname, prefix, fn, 50); in xmlSAX2AttributeNs()
2105 if (fullname != NULL) { in xmlSAX2AttributeNs()
2109 ctxt->node, fullname, dup); in xmlSAX2AttributeNs()
2113 if ((fullname != fn) && (fullname != localname)) in xmlSAX2AttributeNs()
2114 xmlFree(fullname); in xmlSAX2AttributeNs()
2236 const xmlChar *fullname; in xmlSAX2StartElementNs() local
2238 fullname = xmlDictQLookup(ctxt->dict, prefix, localname); in xmlSAX2StartElementNs()
2239 if (fullname != NULL) in xmlSAX2StartElementNs()
2240 localname = fullname; in xmlSAX2StartElementNs()
2389 const xmlChar *fullname; in xmlSAX2StartElementNs() local
2391 fullname = xmlDictQLookup(ctxt->dict, attributes[j+1], in xmlSAX2StartElementNs()
2393 if (fullname != NULL) { in xmlSAX2StartElementNs()
2394 xmlSAX2AttributeNs(ctxt, fullname, NULL, in xmlSAX2StartElementNs()