Lines Matching refs:attrDecl
6555 xmlAttributePtr attrDecl = NULL; in xmlGetPropNodeInternal() local
6574 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, in xmlGetPropNodeInternal()
6576 if ((attrDecl == NULL) && (doc->extSubset != NULL)) { in xmlGetPropNodeInternal()
6577 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, in xmlGetPropNodeInternal()
6596 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elemQName, in xmlGetPropNodeInternal()
6598 if (attrDecl) in xmlGetPropNodeInternal()
6601 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elemQName, in xmlGetPropNodeInternal()
6603 if (attrDecl) in xmlGetPropNodeInternal()
6616 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlGetPropNodeInternal()
6617 return((xmlAttrPtr) attrDecl); in xmlGetPropNodeInternal()
6694 xmlAttributePtr attrDecl; in xmlHasProp() local
6696 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name); in xmlHasProp()
6697 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlHasProp()
6698 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name); in xmlHasProp()
6699 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlHasProp()
6702 return((xmlAttrPtr) attrDecl); in xmlHasProp()