Searched refs:attsDefault (Results 1 – 4 of 4) sorted by relevance
/external/libxml2/ |
D | parser.c | 1111 if (ctxt->attsDefault == NULL) { in xmlAddDefAttrs() 1112 ctxt->attsDefault = xmlHashCreateDict(10, ctxt->dict); in xmlAddDefAttrs() 1113 if (ctxt->attsDefault == NULL) in xmlAddDefAttrs() 1133 defaults = xmlHashLookup2(ctxt->attsDefault, name, prefix); in xmlAddDefAttrs() 1141 if (xmlHashUpdateEntry2(ctxt->attsDefault, name, prefix, in xmlAddDefAttrs() 1155 if (xmlHashUpdateEntry2(ctxt->attsDefault, name, prefix, in xmlAddDefAttrs() 8885 if (ctxt->attsDefault != NULL) { in xmlParseStartTag2() 8888 defaults = xmlHashLookup2(ctxt->attsDefault, localname, prefix); in xmlParseStartTag2() 12171 ctxt->attsDefault = ctx->attsDefault; in xmlParseCtxtExternalEntity() 12213 ctxt->attsDefault = NULL; in xmlParseCtxtExternalEntity() [all …]
|
D | parserInternals.c | 1718 if (ctxt->attsDefault != NULL) in xmlFreeParserCtxt() 1719 xmlHashFree(ctxt->attsDefault, (xmlHashDeallocator) xmlFree); in xmlFreeParserCtxt()
|
D | HTMLparser.c | 5913 if (ctxt->attsDefault != NULL) { in htmlCtxtReset() 5914 xmlHashFree(ctxt->attsDefault, (xmlHashDeallocator) xmlFree); in htmlCtxtReset() 5915 ctxt->attsDefault = NULL; in htmlCtxtReset()
|
/external/libxml2/include/libxml/ |
D | parser.h | 281 xmlHashTablePtr attsDefault; /* defaulted attributes if any */ member
|