Home
last modified time | relevance | path

Searched refs:attrDecl (Results 1 – 4 of 4) sorted by relevance

/external/libxml2/
Dvalid.c2742 xmlAttributePtr attrDecl = NULL; in xmlIsID() local
2756 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, fullelemname, in xmlIsID()
2758 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlIsID()
2759 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullelemname, in xmlIsID()
2768 if ((attrDecl != NULL) && (attrDecl->atype == XML_ATTRIBUTE_ID)) in xmlIsID()
3076 xmlAttributePtr attrDecl; in xmlIsRef() local
3079 attrDecl = xmlGetDtdAttrDesc(doc->intSubset, elem->name, attr->name); in xmlIsRef()
3080 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlIsRef()
3081 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, in xmlIsRef()
3084 if ((attrDecl != NULL) && in xmlIsRef()
[all …]
Dtree.c6345 xmlAttributePtr attrDecl = NULL; in xmlGetPropNodeInternal() local
6364 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, in xmlGetPropNodeInternal()
6366 if ((attrDecl == NULL) && (doc->extSubset != NULL)) { in xmlGetPropNodeInternal()
6367 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, in xmlGetPropNodeInternal()
6386 attrDecl = xmlGetDtdQAttrDesc(doc->intSubset, elemQName, in xmlGetPropNodeInternal()
6388 if (attrDecl) in xmlGetPropNodeInternal()
6391 attrDecl = xmlGetDtdQAttrDesc(doc->extSubset, elemQName, in xmlGetPropNodeInternal()
6393 if (attrDecl) in xmlGetPropNodeInternal()
6406 if ((attrDecl != NULL) && (attrDecl->defaultValue != NULL)) in xmlGetPropNodeInternal()
6407 return((xmlAttrPtr) attrDecl); in xmlGetPropNodeInternal()
[all …]
Dxmlschemas.c169 #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/libxml2/include/libxml/
DschemasInternals.h933 xmlHashTablePtr attrDecl; member