Lines Matching refs:attrDecl
6526 xmlAttributePtr attrDecl = NULL; in xmlGetPropNodeInternal() local
6545 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, in xmlGetPropNodeInternal()
6547 if ((attrDecl == NULL) && (doc->extSubset != NULL)) { in xmlGetPropNodeInternal()
6548 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, in xmlGetPropNodeInternal()
6567 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elemQName, in xmlGetPropNodeInternal()
6569 if (attrDecl) in xmlGetPropNodeInternal()
6572 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elemQName, in xmlGetPropNodeInternal()
6574 if (attrDecl) in xmlGetPropNodeInternal()
6587 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlGetPropNodeInternal()
6588 return((xmlAttrPtr) attrDecl); in xmlGetPropNodeInternal()
6665 xmlAttributePtr attrDecl; in xmlHasProp() local
6667 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name); in xmlHasProp()
6668 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlHasProp()
6669 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name); in xmlHasProp()
6670 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlHasProp()
6673 return((xmlAttrPtr) attrDecl); in xmlHasProp()