Lines Matching refs:fulln
1468 xmlChar *fulln; in xmlCheckDefaultedAttributes() local
1471 fulln = xmlStrdup(attr->prefix); in xmlCheckDefaultedAttributes()
1472 fulln = xmlStrcat(fulln, BAD_CAST ":"); in xmlCheckDefaultedAttributes()
1473 fulln = xmlStrcat(fulln, attr->name); in xmlCheckDefaultedAttributes()
1475 fulln = xmlStrdup(attr->name); in xmlCheckDefaultedAttributes()
1477 if (fulln == NULL) { in xmlCheckDefaultedAttributes()
1491 if (xmlStrEqual(att, fulln)) in xmlCheckDefaultedAttributes()
1500 (const char *)fulln, in xmlCheckDefaultedAttributes()
1503 xmlFree(fulln); in xmlCheckDefaultedAttributes()
1540 xmlChar *fulln; in xmlCheckDefaultedAttributes() local
1542 fulln = xmlBuildQName(attr->name, attr->prefix, fn, 50); in xmlCheckDefaultedAttributes()
1543 if (fulln == NULL) { in xmlCheckDefaultedAttributes()
1557 if (xmlStrEqual(att, fulln)) in xmlCheckDefaultedAttributes()
1564 xmlSAX2AttributeInternal(ctxt, fulln, in xmlCheckDefaultedAttributes()
1567 if ((fulln != fn) && (fulln != attr->name)) in xmlCheckDefaultedAttributes()
1568 xmlFree(fulln); in xmlCheckDefaultedAttributes()