Searched refs:attrDecl (Results 1 – 5 of 5) sorted by relevance
/external/libxml2/ |
D | valid.c | 2694 xmlAttributePtr attrDecl = NULL; in xmlIsID() local 2708 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullelemname, in xmlIsID() 2710 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlIsID() 2711 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullelemname, in xmlIsID() 2720 if ((attrDecl != NULL) && (attrDecl->atype == XML_ATTRIBUTE_ID)) in xmlIsID() 3028 xmlAttributePtr attrDecl; in xmlIsRef() local 3031 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, elem->name, attr->name); in xmlIsRef() 3032 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlIsRef() 3033 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, in xmlIsRef() 3036 if ((attrDecl != NULL) && in xmlIsRef() [all …]
|
D | tree.c | 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() [all …]
|
D | xmlschemas.c | 169 #define WXS_ATTRUSE_DECL(au) WXS_ATTR_CAST (WXS_ATTR_USE_CAST (au))->attrDecl 524 xmlSchemaAttributePtr attrDecl; member 4105 if (schema->attrDecl != NULL) in xmlSchemaFree() 4106 xmlHashFree(schema->attrDecl, NULL); in xmlSchemaFree() 4817 WXS_FIND_GLOBAL_ITEM(attrDecl) in xmlSchemaGetAttributeDecl() 7235 xmlSchemaAttributePtr attrDecl; in xmlSchemaParseLocalAttribute() local 7286 attrDecl = xmlSchemaAddAttribute(pctxt, schema, name, ns, node, 0); in xmlSchemaParseLocalAttribute() 7287 if (attrDecl == NULL) in xmlSchemaParseLocalAttribute() 7290 attrDecl->typeName = tmpName; in xmlSchemaParseLocalAttribute() 7291 attrDecl->typeNs = tmpNs; in xmlSchemaParseLocalAttribute() [all …]
|
/external/libxslt/libxslt/ |
D | xsltutils.c | 128 xmlAttributePtr attrDecl; in xsltGetCNsProp() local 130 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name); in xsltGetCNsProp() 131 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xsltGetCNsProp() 132 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, node->name, name); in xsltGetCNsProp() 134 if ((attrDecl != NULL) && (attrDecl->prefix != NULL)) { in xsltGetCNsProp() 138 ns = xmlSearchNs(doc, node, attrDecl->prefix); in xsltGetCNsProp() 141 attrDecl->defaultValue, -1)); in xsltGetCNsProp() 214 xmlAttributePtr attrDecl; in xsltGetNsProp() local 216 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, node->name, name); in xsltGetNsProp() 217 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xsltGetNsProp() [all …]
|
/external/libxml2/include/libxml/ |
D | schemasInternals.h | 933 xmlHashTablePtr attrDecl; member
|