Lines Matching refs:attrDecl
6568 xmlAttributePtr attrDecl = NULL; in xmlGetPropNodeInternal() local
6587 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, in xmlGetPropNodeInternal()
6589 if ((attrDecl == NULL) && (doc->extSubset != NULL)) { in xmlGetPropNodeInternal()
6590 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, in xmlGetPropNodeInternal()
6597 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, in xmlGetPropNodeInternal()
6599 if ((attrDecl == NULL) && (doc->extSubset != NULL)) { in xmlGetPropNodeInternal()
6600 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, in xmlGetPropNodeInternal()
6619 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elemQName, in xmlGetPropNodeInternal()
6621 if (attrDecl) in xmlGetPropNodeInternal()
6624 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elemQName, in xmlGetPropNodeInternal()
6626 if (attrDecl) in xmlGetPropNodeInternal()
6639 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlGetPropNodeInternal()
6640 return((xmlAttrPtr) attrDecl); in xmlGetPropNodeInternal()
6717 xmlAttributePtr attrDecl; in xmlHasProp() local
6719 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name); in xmlHasProp()
6720 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlHasProp()
6721 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name); in xmlHasProp()
6722 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlHasProp()
6725 return((xmlAttrPtr) attrDecl); in xmlHasProp()