Home | History | Annotate | Download | only in libxml2

Lines Matching refs:attrDecl

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