Searched refs:attsSpecial (Results 1 – 5 of 5) sorted by relevance
/external/libxml2/ |
D | parser.c | 1139 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 …]
|
D | parserInternals.c | 1807 if (ctxt->attsSpecial != NULL) in xmlFreeParserCtxt() 1808 xmlHashFree(ctxt->attsSpecial, NULL); in xmlFreeParserCtxt()
|
D | HTMLparser.c | 6478 if (ctxt->attsSpecial != NULL) { in htmlCtxtReset() 6479 xmlHashFree(ctxt->attsSpecial, NULL); in htmlCtxtReset() 6480 ctxt->attsSpecial = NULL; in htmlCtxtReset()
|
D | SAX2.c | 2055 if (ctxt->attsSpecial != NULL) { in xmlSAX2AttributeNs()
|
/external/libxml2/include/libxml/ |
D | parser.h | 285 xmlHashTablePtr attsSpecial; /* non-CDATA attributes if any */ member
|