Home | History | Annotate | Download | only in libxml2

Lines Matching refs:fulln

1425 		    xmlChar *fulln;
1428 fulln = xmlStrdup(attr->prefix);
1429 fulln = xmlStrcat(fulln, BAD_CAST ":");
1430 fulln = xmlStrcat(fulln, attr->name);
1432 fulln = xmlStrdup(attr->name);
1434 if (fulln == NULL) {
1448 if (xmlStrEqual(att, fulln))
1457 (const char *)fulln,
1460 xmlFree(fulln);
1497 xmlChar *fulln;
1499 fulln = xmlBuildQName(attr->name, attr->prefix, fn, 50);
1500 if (fulln == NULL) {
1514 if (xmlStrEqual(att, fulln))
1521 xmlSAX2AttributeInternal(ctxt, fulln,
1524 if ((fulln != fn) && (fulln != attr->name))
1525 xmlFree(fulln);