Home
last modified time | relevance | path

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

/external/libxml2/
Dparser.c881 if (ctxt->attsDefault == NULL) { in xmlAddDefAttrs()
882 ctxt->attsDefault = xmlHashCreateDict(10, ctxt->dict); in xmlAddDefAttrs()
883 if (ctxt->attsDefault == NULL) in xmlAddDefAttrs()
903 defaults = xmlHashLookup2(ctxt->attsDefault, name, prefix); in xmlAddDefAttrs()
911 xmlHashUpdateEntry2(ctxt->attsDefault, name, prefix, defaults, NULL); in xmlAddDefAttrs()
921 xmlHashUpdateEntry2(ctxt->attsDefault, name, prefix, defaults, NULL); in xmlAddDefAttrs()
8132 if (ctxt->attsDefault != NULL) { in xmlParseStartTag2()
8135 defaults = xmlHashLookup2(ctxt->attsDefault, localname, prefix); in xmlParseStartTag2()
11320 ctxt->attsDefault = ctx->attsDefault; in xmlParseCtxtExternalEntity()
11362 ctxt->attsDefault = NULL; in xmlParseCtxtExternalEntity()
[all …]
DparserInternals.c1716 if (ctxt->attsDefault != NULL) in xmlFreeParserCtxt()
1717 xmlHashFree(ctxt->attsDefault, (xmlHashDeallocator) xmlFree); in xmlFreeParserCtxt()
DHTMLparser.c5871 if (ctxt->attsDefault != NULL) { in htmlCtxtReset()
5872 xmlHashFree(ctxt->attsDefault, (xmlHashDeallocator) xmlFree); in htmlCtxtReset()
5873 ctxt->attsDefault = NULL; in htmlCtxtReset()
/external/libxml2/include/libxml/
Dparser.h281 xmlHashTablePtr attsDefault; /* defaulted attributes if any */ member