Home
last modified time | relevance | path

Searched refs:attsSpecial (Results 1 – 5 of 5) sorted by relevance

/external/libxml2/
Dparser.c1139 if (ctxt->attsSpecial != NULL) { in xmlAddDefAttrs()
1140 if (xmlHashLookup2(ctxt->attsSpecial, fullname, fullattr) != NULL) in xmlAddDefAttrs()
1243 if (ctxt->attsSpecial == NULL) { in xmlAddSpecialAttr()
1244 ctxt->attsSpecial = xmlHashCreateDict(10, ctxt->dict); in xmlAddSpecialAttr()
1245 if (ctxt->attsSpecial == NULL) in xmlAddSpecialAttr()
1249 if (xmlHashLookup2(ctxt->attsSpecial, fullname, fullattr) != NULL) in xmlAddSpecialAttr()
1252 xmlHashAddEntry2(ctxt->attsSpecial, fullname, fullattr, in xmlAddSpecialAttr()
1273 xmlHashRemoveEntry2(ctxt->attsSpecial, fullname, fullattr, NULL); in xmlCleanSpecialAttrCallback()
1288 if (ctxt->attsSpecial == NULL) in xmlCleanSpecialAttr()
1291 xmlHashScanFull(ctxt->attsSpecial, xmlCleanSpecialAttrCallback, ctxt); in xmlCleanSpecialAttr()
[all …]
DparserInternals.c1807 if (ctxt->attsSpecial != NULL) in xmlFreeParserCtxt()
1808 xmlHashFree(ctxt->attsSpecial, NULL); in xmlFreeParserCtxt()
DHTMLparser.c6478 if (ctxt->attsSpecial != NULL) { in htmlCtxtReset()
6479 xmlHashFree(ctxt->attsSpecial, NULL); in htmlCtxtReset()
6480 ctxt->attsSpecial = NULL; in htmlCtxtReset()
DSAX2.c2055 if (ctxt->attsSpecial != NULL) { in xmlSAX2AttributeNs()
/external/libxml2/include/libxml/
Dparser.h285 xmlHashTablePtr attsSpecial; /* non-CDATA attributes if any */ member