Lines Matching refs:fullname

665 	    xmlChar *fullname;
667 fullname = xmlBuildQName(content->name, content->prefix, fn, 50);
668 if (fullname == NULL) {
676 ctxt->state, NULL, fullname, NULL);
680 ctxt->state, NULL, fullname, NULL);
685 ctxt->state, NULL, fullname, NULL);
687 ctxt->state, fullname, NULL);
693 ctxt->state, ctxt->state, fullname, NULL);
696 if ((fullname != fn) && (fullname != content->name))
697 xmlFree(fullname);
3872 xmlChar *fullname;
3874 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
3875 if (fullname == NULL)
3877 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, name);
3879 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname, name);
3883 if ((fullname != fn) && (fullname != elem->name))
3884 xmlFree(fullname);
3957 xmlChar *fullname;
3959 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
3960 if (fullname == NULL)
3962 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, name);
3964 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname, name);
3965 if ((fullname != fn) && (fullname != elem->name))
3966 xmlFree(fullname);
4266 xmlChar *fullname;
4268 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4269 if (fullname == NULL)
4272 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
4275 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
4278 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, attr->name);
4281 fullname, attr->name);
4283 if ((fullname != fn) && (fullname != elem->name))
4284 xmlFree(fullname);
4443 xmlChar *fullname;
4445 fullname = xmlBuildQName(elem->name, prefix, fn, 50);
4446 if (fullname == NULL) {
4451 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
4454 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
4457 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname,
4460 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname,
4463 if ((fullname != fn) && (fullname != elem->name))
4464 xmlFree(fullname);
5192 xmlChar *fullname;
5194 fullname = xmlBuildQName(cur->name,
5196 if (fullname == NULL) {
5200 ret = xmlRegExecPushString(exec, fullname, NULL);
5201 if ((fullname != fn) && (fullname != cur->name))
5202 xmlFree(fullname);
5966 xmlChar *fullname;
5968 fullname = xmlBuildQName(child->name, child->ns->prefix,
5970 if (fullname == NULL)
5975 if (xmlStrEqual(cont->name, fullname))
5980 if (xmlStrEqual(cont->c1->name, fullname))
5992 if ((fullname != fn) && (fullname != child->name))
5993 xmlFree(fullname);
6233 xmlChar *fullname;
6235 fullname = xmlBuildQName(root->name, root->ns->prefix, fn, 50);
6236 if (fullname == NULL) {
6240 ret = xmlStrEqual(doc->intSubset->name, fullname);
6241 if ((fullname != fn) && (fullname != root->name))
6242 xmlFree(fullname);