Lines Matching refs:attrDecl
6370 xmlAttributePtr attrDecl = NULL; in xmlGetPropNodeInternal() local
6389 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, in xmlGetPropNodeInternal()
6391 if ((attrDecl == NULL) && (doc->extSubset != NULL)) { in xmlGetPropNodeInternal()
6392 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, in xmlGetPropNodeInternal()
6411 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elemQName, in xmlGetPropNodeInternal()
6413 if (attrDecl) in xmlGetPropNodeInternal()
6416 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elemQName, in xmlGetPropNodeInternal()
6418 if (attrDecl) in xmlGetPropNodeInternal()
6431 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlGetPropNodeInternal()
6432 return((xmlAttrPtr) attrDecl); in xmlGetPropNodeInternal()
6509 xmlAttributePtr attrDecl; in xmlHasProp() local
6511 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name); in xmlHasProp()
6512 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlHasProp()
6513 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name); in xmlHasProp()
6514 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlHasProp()
6517 return((xmlAttrPtr) attrDecl); in xmlHasProp()