Lines Matching refs:fulln
1461 xmlChar *fulln; in xmlCheckDefaultedAttributes() local
1464 fulln = xmlStrdup(attr->prefix); in xmlCheckDefaultedAttributes()
1465 fulln = xmlStrcat(fulln, BAD_CAST ":"); in xmlCheckDefaultedAttributes()
1466 fulln = xmlStrcat(fulln, attr->name); in xmlCheckDefaultedAttributes()
1468 fulln = xmlStrdup(attr->name); in xmlCheckDefaultedAttributes()
1470 if (fulln == NULL) { in xmlCheckDefaultedAttributes()
1484 if (xmlStrEqual(att, fulln)) in xmlCheckDefaultedAttributes()
1493 (const char *)fulln, in xmlCheckDefaultedAttributes()
1496 xmlFree(fulln); in xmlCheckDefaultedAttributes()
1533 xmlChar *fulln; in xmlCheckDefaultedAttributes() local
1535 fulln = xmlBuildQName(attr->name, attr->prefix, fn, 50); in xmlCheckDefaultedAttributes()
1536 if (fulln == NULL) { in xmlCheckDefaultedAttributes()
1550 if (xmlStrEqual(att, fulln)) in xmlCheckDefaultedAttributes()
1557 xmlSAX2AttributeInternal(ctxt, fulln, in xmlCheckDefaultedAttributes()
1560 if ((fulln != fn) && (fulln != attr->name)) in xmlCheckDefaultedAttributes()
1561 xmlFree(fulln); in xmlCheckDefaultedAttributes()