Home | History | Annotate | Download | only in libxml2

Lines Matching refs:fullname

678 	    xmlChar *fullname;
680 fullname = xmlBuildQName(content->name, content->prefix, fn, 50);
681 if (fullname == NULL) {
689 ctxt->state, NULL, fullname, NULL);
693 ctxt->state, NULL, fullname, NULL);
698 ctxt->state, NULL, fullname, NULL);
700 ctxt->state, fullname, NULL);
706 ctxt->state, ctxt->state, fullname, NULL);
709 if ((fullname != fn) && (fullname != content->name))
710 xmlFree(fullname);
3970 xmlChar *fullname;
3972 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
3973 if (fullname == NULL)
3975 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, name);
3977 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname, name);
3981 if ((fullname != fn) && (fullname != elem->name))
3982 xmlFree(fullname);
4055 xmlChar *fullname;
4057 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4058 if (fullname == NULL)
4060 if ((fullname != fn) && (fullname != elem->name))
4061 xmlFree(fullname);
4362 xmlChar *fullname;
4364 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4365 if (fullname == NULL)
4368 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
4371 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
4374 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, attr->name);
4377 fullname, attr->name);
4379 if ((fullname != fn) && (fullname != elem->name))
4380 xmlFree(fullname);
4539 xmlChar *fullname;
4541 fullname = xmlBuildQName(elem->name, prefix, fn, 50);
4542 if (fullname == NULL) {
4547 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
4550 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
4553 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname,
4556 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname,
4559 if ((fullname != fn) && (fullname != elem->name))
4560 xmlFree(fullname);
5288 xmlChar *fullname;
5290 fullname = xmlBuildQName(cur->name,
5292 if (fullname == NULL) {
5296 ret = xmlRegExecPushString(exec, fullname, NULL);
5297 if ((fullname != fn) && (fullname != cur->name))
5298 xmlFree(fullname);
6062 xmlChar *fullname;
6064 fullname = xmlBuildQName(child->name, child->ns->prefix,
6066 if (fullname == NULL)
6071 if (xmlStrEqual(cont->name, fullname))
6076 if (xmlStrEqual(cont->c1->name, fullname))
6088 if ((fullname != fn) && (fullname != child->name))
6089 xmlFree(fullname);
6329 xmlChar *fullname;
6331 fullname = xmlBuildQName(root->name, root->ns->prefix, fn, 50);
6332 if (fullname == NULL) {
6336 ret = xmlStrEqual(doc->intSubset->name, fullname);
6337 if ((fullname != fn) && (fullname != root->name))
6338 xmlFree(fullname);