Home
last modified time | relevance | path

Searched refs:publicId (Results 1 – 25 of 86) sorted by relevance

1234

/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTransformerHandlerImpl.java248 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 …]
DTransformerIdentityImpl.java826 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/
Dxmlbuilder.py215 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
Dexpatbuilder.py240 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 …]
Dminidom.py1226 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/python/cpython3/Lib/xml/dom/
Dxmlbuilder.py215 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
Dexpatbuilder.py240 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 …]
Dminidom.py1296 def _identified_mixin_init(self, publicId, systemId): argument
1297 self.publicId = publicId
1301 return self.publicId
1310 publicId = None variable in DocumentType
1336 notation = Notation(n.nodeName, n.publicId, n.systemId)
1340 entity = Entity(e.nodeName, e.publicId, e.systemId,
1355 if self.publicId:
1357 % (newl, self.publicId, newl, self.systemId))
1375 def __init__(self, name, publicId, systemId, notation): argument
1379 self._identified_mixin_init(publicId, systemId)
[all …]
/external/libxml2/
DtestSAX.c364 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 …]
DtestHTML.c178 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()
Dlegacy.c919 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/cldr/tools/java/org/unicode/cldr/util/
DXMLFileReader.java73 public void handleStartDtd(String name, String publicId, String systemId) { in handleStartDtd() argument
220 public void startDTD(String name, String publicId, String systemId) throws SAXException { in startDTD() argument
261 …public void externalEntityDecl(String name, String publicId, String systemId) throws SAXException { in externalEntityDecl() argument
262 if (SHOW_ALL) Log.logln("Internal Entity\t" + name + "\t" + publicId + "\t" + systemId); in externalEntityDecl()
265 public void notationDecl(String name, String publicId, String systemId) { in notationDecl() argument
267 + ", " + publicId in notationDecl()
283 public void unparsedEntityDecl(String name, String publicId, in unparsedEntityDecl() argument
286 + ", " + publicId in unparsedEntityDecl()
407 public void startDTD(String name, String publicId, String systemId) throws SAXException { in startDTD() argument
409 + ", publicId: " + publicId in startDTD()
[all …]
/external/python/cpython2/Lib/xml/sax/
Dhandler.py214 def notationDecl(self, name, publicId, systemId): argument
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument
230 def resolveEntity(self, publicId, systemId): argument
Dsaxutils.py265 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/
Dhandler.py214 def notationDecl(self, name, publicId, systemId): argument
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument
230 def resolveEntity(self, publicId, systemId): argument
Dsaxutils.py293 def notationDecl(self, name, publicId, systemId): argument
294 self._dtd_handler.notationDecl(name, publicId, systemId)
296 def unparsedEntityDecl(self, name, publicId, systemId, ndata): argument
297 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata)
301 def resolveEntity(self, publicId, systemId): argument
302 return self._ent_handler.resolveEntity(publicId, systemId)
/external/expat/xmlwf/
Dxmlwf.c58 const XML_Char *publicId; member
318 free((void *)notationListHead->publicId); in freeNotations()
396 if (notations[i]->publicId != NULL) { in endDoctypeDecl()
398 fputts(notations[i]->publicId, data->fp); in endDoctypeDecl()
426 const XML_Char *systemId, const XML_Char *publicId) { in notationDecl() argument
453 if (publicId != NULL) { in notationDecl()
454 entry->publicId = xcsdup(publicId); in notationDecl()
455 if (entry->publicId == NULL) { in notationDecl()
463 entry->publicId = NULL; in notationDecl()
691 const XML_Char *publicId) { in metaNotationDecl() argument
[all …]
Dxmlfile.c147 const XML_Char *publicId) { in externalEntityRefFilemap() argument
154 UNUSED_P(publicId); in externalEntityRefFilemap()
225 const XML_Char *publicId) { in externalEntityRefStream() argument
230 UNUSED_P(publicId); in externalEntityRefStream()
/external/libxml2/include/libxml/
DSAX.h64 const xmlChar *publicId,
71 const xmlChar *publicId,
90 const xmlChar *publicId,
95 const xmlChar *publicId,
DSAX2.h62 const xmlChar *publicId,
69 const xmlChar *publicId,
88 const xmlChar *publicId,
93 const xmlChar *publicId,
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DNodeLocator.java48 public NodeLocator(String publicId, String systemId, in NodeLocator() argument
51 this.m_publicId = publicId; in NodeLocator()
/external/expat/tests/
Druntests.c227 const XML_Char *systemId, const XML_Char *publicId, in dummy_entity_decl_handler() argument
236 UNUSED_P(publicId); in dummy_entity_decl_handler()
244 const XML_Char *publicId) { in dummy_notation_decl_handler() argument
249 UNUSED_P(publicId); in dummy_notation_decl_handler()
351 const XML_Char *publicId, in dummy_unparsed_entity_decl_handler() argument
357 UNUSED_P(publicId); in dummy_unparsed_entity_decl_handler()
405 const XML_Char *publicId) { in external_entity_optioner() argument
410 UNUSED_P(publicId); in external_entity_optioner()
442 const XML_Char *systemId, const XML_Char *publicId, in param_entity_match_handler() argument
447 UNUSED_P(publicId); in param_entity_match_handler()
[all …]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
DXSLTElementProcessor.java92 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/python/cpython3/Modules/expat/
Dexpat.h336 const XML_Char *systemId, const XML_Char *publicId,
353 const XML_Char *systemId, const XML_Char *publicId,
364 const XML_Char *publicId);
428 const XML_Char *publicId);
/external/expat/lib/
Dexpat.h338 const XML_Char *systemId, const XML_Char *publicId,
355 const XML_Char *systemId, const XML_Char *publicId,
366 const XML_Char *publicId);
430 const XML_Char *publicId);

1234