Searched refs:extSubset (Results 1 – 10 of 10) sorted by relevance
/external/libxml2/ |
D | entities.c | 312 if (doc->extSubset == NULL) { in xmlAddDtdEntity() 317 dtd = doc->extSubset; in xmlAddDtdEntity() 462 if ((doc->extSubset != NULL) && (doc->extSubset->pentities != NULL)) { in xmlGetParameterEntity() 463 table = (xmlEntitiesTablePtr) doc->extSubset->pentities; in xmlGetParameterEntity() 486 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) { in xmlGetDtdEntity() 487 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDtdEntity() 517 if ((doc->extSubset != NULL) && in xmlGetDocEntity() 518 (doc->extSubset->entities != NULL)) { in xmlGetDocEntity() 519 table = (xmlEntitiesTablePtr) doc->extSubset->entities; in xmlGetDocEntity()
|
D | valid.c | 638 (doc->extSubset == NULL)) return(0) 1998 if ((dtd->doc != NULL) && (dtd->doc->extSubset == dtd) && in xmlAddAttributeDecl() 2682 if ((doc->intSubset == NULL) && (doc->extSubset == NULL) && in xmlIsID() 2710 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlIsID() 2711 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, fullelemname, in xmlIsID() 3023 if ((doc->intSubset == NULL) && (doc->extSubset == NULL)) { in xmlIsRef() 3033 if ((attrDecl == NULL) && (doc->extSubset != NULL)) in xmlIsRef() 3034 attrDecl = xmlGetDtdAttrDesc(doc->extSubset, in xmlIsRef() 3359 if ((notaDecl == NULL) && (doc->extSubset != NULL)) in xmlValidateNotationUse() 3360 notaDecl = xmlGetDtdNotationDesc(doc->extSubset, notationName); in xmlValidateNotationUse() [all …]
|
D | SAX2.c | 340 return(ctxt->myDoc->extSubset != NULL); in xmlSAX2HasExternalSubset() 767 attr = xmlAddAttributeDecl(&ctxt->vctxt, ctxt->myDoc->extSubset, elem, in xmlSAX2AttributeDecl() 819 elem = xmlAddElementDecl(&ctxt->vctxt, ctxt->myDoc->extSubset, in xmlSAX2ElementDecl() 870 nota = xmlAddNotationDecl(&ctxt->vctxt, ctxt->myDoc->extSubset, name, in xmlSAX2NotationDecl() 1438 elemDecl = xmlGetDtdQElementDesc(ctxt->myDoc->extSubset, name, prefix); in xmlCheckDefaultedAttributes() 1451 (ctxt->myDoc->extSubset != NULL) && in xmlCheckDefaultedAttributes() 1455 (xmlGetDtdQAttrDesc(ctxt->myDoc->extSubset, in xmlCheckDefaultedAttributes() 1568 elemDecl = xmlGetDtdQElementDesc(ctxt->myDoc->extSubset, in xmlCheckDefaultedAttributes() 1607 if (ctxt->validate && (ctxt->myDoc->extSubset == NULL) && in xmlSAX2StartElement() 1688 (ctxt->myDoc->extSubset != NULL))) { in xmlSAX2StartElement() [all …]
|
D | tree.c | 874 if ((doc != NULL) && (doc->extSubset != NULL)) { in xmlNewDtd() 879 /* !!! */ (char *)doc->extSubset->name); in xmlNewDtd() 902 doc->extSubset = cur; in xmlNewDtd() 1204 xmlDtdPtr extSubset, intSubset; in xmlFreeDoc() local 1232 extSubset = cur->extSubset; in xmlFreeDoc() 1234 if (intSubset == extSubset) in xmlFreeDoc() 1235 extSubset = NULL; in xmlFreeDoc() 1236 if (extSubset != NULL) { in xmlFreeDoc() 1237 xmlUnlinkNode((xmlNodePtr) cur->extSubset); in xmlFreeDoc() 1238 cur->extSubset = NULL; in xmlFreeDoc() [all …]
|
D | xmlreader.c | 301 (cur->parent->doc->extSubset != NULL))) { in xmlTextReaderFreeProp() 514 xmlDtdPtr extSubset, intSubset; in xmlTextReaderFreeDoc() local 528 extSubset = cur->extSubset; in xmlTextReaderFreeDoc() 530 if (intSubset == extSubset) in xmlTextReaderFreeDoc() 531 extSubset = NULL; in xmlTextReaderFreeDoc() 532 if (extSubset != NULL) { in xmlTextReaderFreeDoc() 533 xmlUnlinkNode((xmlNodePtr) cur->extSubset); in xmlTextReaderFreeDoc() 534 cur->extSubset = NULL; in xmlTextReaderFreeDoc() 535 xmlFreeDtd(extSubset); in xmlTextReaderFreeDoc()
|
D | parser.c | 12849 ctxt->myDoc->extSubset = xmlNewDtd(ctxt->myDoc, BAD_CAST "none", in xmlIOParseDTD() 12873 ret = ctxt->myDoc->extSubset; in xmlIOParseDTD() 12874 ctxt->myDoc->extSubset = NULL; in xmlIOParseDTD() 12998 ctxt->myDoc->extSubset = xmlNewDtd(ctxt->myDoc, BAD_CAST "none", in xmlSAXParseDTD() 13004 ret = ctxt->myDoc->extSubset; in xmlSAXParseDTD() 13005 ctxt->myDoc->extSubset = NULL; in xmlSAXParseDTD() 13113 newDoc->extSubset = ctx->myDoc->extSubset; in xmlParseCtxtExternalEntity() 13123 newDoc->extSubset = NULL; in xmlParseCtxtExternalEntity() 13250 newDoc->extSubset = NULL; in xmlParseCtxtExternalEntity() 13339 newDoc->extSubset = doc->extSubset; in xmlParseExternalEntityPrivate() [all …]
|
D | debugXML.c | 1296 if ((doc->extSubset != NULL) && (doc->extSubset->entities != NULL)) { in xmlCtxtDumpEntities() 1298 doc->extSubset->entities; in xmlCtxtDumpEntities()
|
D | xinclude.c | 1372 source = from->extSubset; in xmlXIncludeMergeEntities()
|
/external/libxml2/include/libxml/ |
D | tree.h | 571 struct _xmlDtd *extSubset; /* the document external subset */ member
|
/external/libxml2/os400/libxmlrpg/ |
D | tree.rpgle | 552 d extSubset like(xmlDtdPtr) External subset
|