Lines Matching refs:fullname

675 	    xmlChar *fullname;
677 fullname = xmlBuildQName(content->name, content->prefix, fn, 50);
678 if (fullname == NULL) {
686 ctxt->state, NULL, fullname, NULL);
690 ctxt->state, NULL, fullname, NULL);
695 ctxt->state, NULL, fullname, NULL);
697 ctxt->state, fullname, NULL);
703 ctxt->state, ctxt->state, fullname, NULL);
706 if ((fullname != fn) && (fullname != content->name))
707 xmlFree(fullname);
3895 xmlChar *fullname;
3897 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
3898 if (fullname == NULL)
3900 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, name);
3902 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname, name);
3906 if ((fullname != fn) && (fullname != elem->name))
3907 xmlFree(fullname);
3980 xmlChar *fullname;
3982 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
3983 if (fullname == NULL)
3985 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, name);
3987 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname, name);
3988 if ((fullname != fn) && (fullname != elem->name))
3989 xmlFree(fullname);
4289 xmlChar *fullname;
4291 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4292 if (fullname == NULL)
4295 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
4298 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
4301 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, attr->name);
4304 fullname, attr->name);
4306 if ((fullname != fn) && (fullname != elem->name))
4307 xmlFree(fullname);
4466 xmlChar *fullname;
4468 fullname = xmlBuildQName(elem->name, prefix, fn, 50);
4469 if (fullname == NULL) {
4474 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
4477 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
4480 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname,
4483 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname,
4486 if ((fullname != fn) && (fullname != elem->name))
4487 xmlFree(fullname);
5215 xmlChar *fullname;
5217 fullname = xmlBuildQName(cur->name,
5219 if (fullname == NULL) {
5223 ret = xmlRegExecPushString(exec, fullname, NULL);
5224 if ((fullname != fn) && (fullname != cur->name))
5225 xmlFree(fullname);
5989 xmlChar *fullname;
5991 fullname = xmlBuildQName(child->name, child->ns->prefix,
5993 if (fullname == NULL)
5998 if (xmlStrEqual(cont->name, fullname))
6003 if (xmlStrEqual(cont->c1->name, fullname))
6015 if ((fullname != fn) && (fullname != child->name))
6016 xmlFree(fullname);
6256 xmlChar *fullname;
6258 fullname = xmlBuildQName(root->name, root->ns->prefix, fn, 50);
6259 if (fullname == NULL) {
6263 ret = xmlStrEqual(doc->intSubset->name, fullname);
6264 if ((fullname != fn) && (fullname != root->name))
6265 xmlFree(fullname);