Home | History | Annotate | Download | only in libxml2

Lines Matching refs:fullname

680 	    xmlChar *fullname;
682 fullname = xmlBuildQName(content->name, content->prefix, fn, 50);
683 if (fullname == NULL) {
691 ctxt->state, NULL, fullname, NULL);
695 ctxt->state, NULL, fullname, NULL);
700 ctxt->state, NULL, fullname, NULL);
702 ctxt->state, fullname, NULL);
708 ctxt->state, ctxt->state, fullname, NULL);
711 if ((fullname != fn) && (fullname != content->name))
712 xmlFree(fullname);
4017 xmlChar *fullname;
4019 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4020 if (fullname == NULL)
4022 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, name);
4024 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname, name);
4028 if ((fullname != fn) && (fullname != elem->name))
4029 xmlFree(fullname);
4102 xmlChar *fullname;
4104 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4105 if (fullname == NULL)
4107 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, name);
4109 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname, name);
4110 if ((fullname != fn) && (fullname != elem->name))
4111 xmlFree(fullname);
4412 xmlChar *fullname;
4414 fullname = xmlBuildQName(elem->name, elem->ns->prefix, fn, 50);
4415 if (fullname == NULL)
4418 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
4421 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
4424 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname, attr->name);
4427 fullname, attr->name);
4429 if ((fullname != fn) && (fullname != elem->name))
4430 xmlFree(fullname);
4589 xmlChar *fullname;
4591 fullname = xmlBuildQName(elem->name, prefix, fn, 50);
4592 if (fullname == NULL) {
4597 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, fullname,
4600 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, fullname,
4603 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullname,
4606 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullname,
4609 if ((fullname != fn) && (fullname != elem->name))
4610 xmlFree(fullname);
5338 xmlChar *fullname;
5340 fullname = xmlBuildQName(cur->name,
5342 if (fullname == NULL) {
5346 ret = xmlRegExecPushString(exec, fullname, NULL);
5347 if ((fullname != fn) && (fullname != cur->name))
5348 xmlFree(fullname);
6112 xmlChar *fullname;
6114 fullname = xmlBuildQName(child->name, child->ns->prefix,
6116 if (fullname == NULL)
6121 if (xmlStrEqual(cont->name, fullname))
6126 if (xmlStrEqual(cont->c1->name, fullname))
6138 if ((fullname != fn) && (fullname != child->name))
6139 xmlFree(fullname);
6379 xmlChar *fullname;
6381 fullname = xmlBuildQName(root->name, root->ns->prefix, fn, 50);
6382 if (fullname == NULL) {
6386 ret = xmlStrEqual(doc->intSubset->name, fullname);
6387 if ((fullname != fn) && (fullname != root->name))
6388 xmlFree(fullname);