/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | TransformerHandlerImpl.java | 248 public InputSource resolveEntity(String publicId, String systemId) in resolveEntity() argument 254 return m_entityResolver.resolveEntity(publicId, systemId); in resolveEntity() 276 public void notationDecl(String name, String publicId, String systemId) in notationDecl() argument 282 m_dtdHandler.notationDecl(name, publicId, systemId); in notationDecl() 298 String name, String publicId, String systemId, String notationName) in unparsedEntityDecl() argument 304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName); in unparsedEntityDecl() 768 public void startDTD(String name, String publicId, String systemId) in startDTD() argument 774 + publicId + ", " + systemId); in startDTD() 778 m_lexicalHandler.startDTD(name, publicId, systemId); in startDTD() 1025 String name, String publicId, String systemId) throws SAXException in externalEntityDecl() argument [all …]
|
D | TransformerIdentityImpl.java | 826 public void notationDecl(String name, String publicId, String systemId) in notationDecl() argument 830 m_resultDTDHandler.notationDecl(name, publicId, systemId); in notationDecl() 852 String name, String publicId, String systemId, String notationName) in unparsedEntityDecl() argument 857 m_resultDTDHandler.unparsedEntityDecl(name, publicId, systemId, in unparsedEntityDecl() 1219 public void startDTD(String name, String publicId, String systemId) in startDTD() argument 1224 m_resultLexicalHandler.startDTD(name, publicId, systemId); in startDTD() 1417 public void externalEntityDecl (String name, String publicId, in externalEntityDecl() argument 1422 m_resultDeclHandler.externalEntityDecl(name, publicId, systemId); in externalEntityDecl()
|
/external/python/cpython2/Lib/xml/dom/ |
D | xmlbuilder.py | 215 def resolveEntity(self, publicId, systemId): argument 218 source.publicId = publicId 265 self.publicId = None 290 return self.publicId 291 def _set_publicId(self, publicId): argument 292 self.publicId = publicId
|
D | expatbuilder.py | 240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId, argument 243 doctypeName, publicId, systemId) 310 base, systemId, publicId, notationName): argument 316 node = self.document._create_entity(entityName, publicId, 327 def notation_decl_handler(self, notationName, base, systemId, publicId): argument 328 node = self.document._create_notation(notationName, publicId, systemId) 347 def external_entity_ref_handler(self, context, base, systemId, publicId): argument 637 if doctype.publicId: 639 % (doctype.publicId, doctype.systemId)) 670 if notation.publicId: [all …]
|
D | minidom.py | 1226 def _identified_mixin_init(self, publicId, systemId): argument 1227 self.publicId = publicId 1231 return self.publicId 1240 publicId = None variable in DocumentType 1266 notation = Notation(n.nodeName, n.publicId, n.systemId) 1270 entity = Entity(e.nodeName, e.publicId, e.systemId, 1285 if self.publicId: 1287 % (newl, self.publicId, newl, self.systemId)) 1305 def __init__(self, name, publicId, systemId, notation): argument 1309 self._identified_mixin_init(publicId, systemId) [all …]
|
/external/libxml2/ |
D | testSAX.c | 364 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) in resolveEntityDebug() argument 373 if (publicId != NULL) in resolveEntityDebug() 374 fprintf(stdout, "%s", (char *)publicId); in resolveEntityDebug() 441 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) in entityDeclDebug() argument 445 if (publicId == NULL) in entityDeclDebug() 446 publicId = nullstr; in entityDeclDebug() 455 name, type, publicId, systemId, content); in entityDeclDebug() 514 const xmlChar *publicId, const xmlChar *systemId) in notationDeclDebug() argument 520 (char *) name, (char *) publicId, (char *) systemId); in notationDeclDebug() 535 const xmlChar *publicId, const xmlChar *systemId, in unparsedEntityDeclDebug() argument [all …]
|
D | testHTML.c | 178 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) in resolveEntityDebug() argument 184 if (publicId != NULL) in resolveEntityDebug() 185 fprintf(stdout, "%s", (char *)publicId); in resolveEntityDebug() 246 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) in entityDeclDebug() argument 249 name, type, publicId, systemId, content); in entityDeclDebug() 297 const xmlChar *publicId, const xmlChar *systemId) in notationDeclDebug() argument 300 (char *) name, (char *) publicId, (char *) systemId); in notationDeclDebug() 315 const xmlChar *publicId, const xmlChar *systemId, in unparsedEntityDeclDebug() argument 319 (char *) name, (char *) publicId, (char *) systemId, in unparsedEntityDeclDebug()
|
D | legacy.c | 919 resolveEntity(void *ctx, const xmlChar * publicId, in resolveEntity() argument 923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId)); in resolveEntity() 975 const xmlChar * publicId, const xmlChar * systemId, in entityDecl() argument 979 xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content); in entityDecl() 1035 const xmlChar * publicId, const xmlChar * systemId) in notationDecl() argument 1038 xmlSAX2NotationDecl(ctx, name, publicId, systemId); in notationDecl() 1054 const xmlChar * publicId, const xmlChar * systemId, in unparsedEntityDecl() argument 1058 xmlSAX2UnparsedEntityDecl(ctx, name, publicId, systemId, in unparsedEntityDecl()
|
/external/python/cpython3/Lib/xml/dom/ |
D | xmlbuilder.py | 216 def resolveEntity(self, publicId, systemId): argument 219 source.publicId = publicId 266 self.publicId = None 291 return self.publicId 292 def _set_publicId(self, publicId): argument 293 self.publicId = publicId
|
D | expatbuilder.py | 240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId, argument 243 doctypeName, publicId, systemId) 306 base, systemId, publicId, notationName): argument 312 node = self.document._create_entity(entityName, publicId, 323 def notation_decl_handler(self, notationName, base, systemId, publicId): argument 324 node = self.document._create_notation(notationName, publicId, systemId) 343 def external_entity_ref_handler(self, context, base, systemId, publicId): argument 630 if doctype.publicId: 632 % (doctype.publicId, doctype.systemId)) 663 if notation.publicId: [all …]
|
D | minidom.py | 1271 def _identified_mixin_init(self, publicId, systemId): argument 1272 self.publicId = publicId 1276 return self.publicId 1285 publicId = None variable in DocumentType 1311 notation = Notation(n.nodeName, n.publicId, n.systemId) 1315 entity = Entity(e.nodeName, e.publicId, e.systemId, 1330 if self.publicId: 1332 % (newl, self.publicId, newl, self.systemId)) 1350 def __init__(self, name, publicId, systemId, notation): argument 1354 self._identified_mixin_init(publicId, systemId) [all …]
|
/external/expat/xmlwf/ |
D | xmlwf.c | 58 const XML_Char *publicId; member 333 free((void *)notationListHead->publicId); in freeNotations() 408 if (notations[i]->publicId != NULL) { in endDoctypeDecl() 410 fputts(notations[i]->publicId, data->fp); in endDoctypeDecl() 442 const XML_Char *publicId) in notationDecl() argument 470 if (publicId != NULL) { in notationDecl() 471 entry->publicId = xcsdup(publicId); in notationDecl() 472 if (entry->publicId == NULL) { in notationDecl() 481 entry->publicId = NULL; in notationDecl() 717 const XML_Char *publicId) in metaNotationDecl() argument [all …]
|
D | xmlwin32url.cxx | 68 const XML_Char *systemId, const XML_Char *publicId); 247 const XML_Char *publicId) in externalEntityRef() argument 283 const XML_Char *publicId) in externalEntityRef() argument 285 return ((Callback *)arg)->externalEntityRef(context, systemId, publicId); in externalEntityRef()
|
/external/python/cpython2/Lib/xml/sax/ |
D | handler.py | 214 def notationDecl(self, name, publicId, systemId): argument 217 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument 230 def resolveEntity(self, publicId, systemId): argument
|
D | saxutils.py | 265 def notationDecl(self, name, publicId, systemId): argument 266 self._dtd_handler.notationDecl(name, publicId, systemId) 268 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument 269 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata) 273 def resolveEntity(self, publicId, systemId): argument 274 return self._ent_handler.resolveEntity(publicId, systemId)
|
/external/python/cpython3/Lib/xml/sax/ |
D | handler.py | 214 def notationDecl(self, name, publicId, systemId): argument 217 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument 230 def resolveEntity(self, publicId, systemId): argument
|
D | saxutils.py | 294 def notationDecl(self, name, publicId, systemId): argument 295 self._dtd_handler.notationDecl(name, publicId, systemId) 297 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument 298 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata) 302 def resolveEntity(self, publicId, systemId): argument 303 return self._ent_handler.resolveEntity(publicId, systemId)
|
/external/libxml2/include/libxml/ |
D | SAX2.h | 62 const xmlChar *publicId, 69 const xmlChar *publicId, 88 const xmlChar *publicId, 93 const xmlChar *publicId,
|
D | SAX.h | 64 const xmlChar *publicId, 71 const xmlChar *publicId, 90 const xmlChar *publicId, 95 const xmlChar *publicId,
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | NodeLocator.java | 48 public NodeLocator(String publicId, String systemId, in NodeLocator() argument 51 this.m_publicId = publicId; in NodeLocator()
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
D | XSLTElementProcessor.java | 92 StylesheetHandler handler, String publicId, String systemId) in resolveEntity() argument 110 String publicId, String systemId) in notationDecl() argument 129 String publicId, String systemId, in unparsedEntityDecl() argument
|
/external/expat/lib/ |
D | expat.h | 366 const XML_Char *publicId, 387 const XML_Char *publicId, 399 const XML_Char *publicId); 466 const XML_Char *publicId);
|
/external/python/cpython3/Modules/expat/ |
D | expat.h | 337 const XML_Char *publicId, 358 const XML_Char *publicId, 370 const XML_Char *publicId); 437 const XML_Char *publicId);
|
/external/python/cpython2/Modules/expat/ |
D | expat.h | 337 const XML_Char *publicId, 358 const XML_Char *publicId, 370 const XML_Char *publicId); 437 const XML_Char *publicId);
|
/external/testng/src/main/java/org/testng/xml/ |
D | TestNGContentHandler.java | 92 public InputSource resolveEntity(String systemId, String publicId) in resolveEntity() argument 95 if (Parser.DEPRECATED_TESTNG_DTD_URL.equals(publicId) in resolveEntity() 96 || Parser.TESTNG_DTD_URL.equals(publicId)) { in resolveEntity() 102 System.out.println("WARNING: couldn't find in classpath " + publicId in resolveEntity() 104 result = super.resolveEntity(systemId, publicId); in resolveEntity() 115 result = super.resolveEntity(systemId, publicId); in resolveEntity()
|