Lines Matching refs:attrDecl
6515 xmlAttributePtr attrDecl = NULL;
6534 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset,
6536 if ((attrDecl == NULL) && (doc->extSubset != NULL)) {
6537 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset,
6556 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elemQName,
6558 if (attrDecl)
6561 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elemQName,
6563 if (attrDecl)
6576 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
6577 return((xmlAttrPtr) attrDecl);
6654 xmlAttributePtr attrDecl;
6656 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name);
6657 if ((attrDecl == NULL) && (doc->extSubset != NULL))
6658 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name);
6659 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL))
6662 return((xmlAttrPtr) attrDecl);