Searched refs:publicId (Results 1 - 25 of 83) sorted by relevance

1234

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DNodeLocator.java43 * @param publicId a <code>String</code> value
48 public NodeLocator(String publicId, String systemId, argument
51 this.m_publicId = publicId;
/external/python/cpython2/Lib/xml/sax/
H A Dhandler.py214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
H A Dsaxutils.py265 def notationDecl(self, name, publicId, systemId):
266 self._dtd_handler.notationDecl(name, publicId, systemId)
268 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
269 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata)
273 def resolveEntity(self, publicId, systemId):
274 return self._ent_handler.resolveEntity(publicId, systemId)
/external/libxml2/
H A DtestHTML.c166 * @publicId: The public ID of the entity
178 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) argument
184 if (publicId != NULL)
185 fprintf(stdout, "%s", (char *)publicId);
238 * @publicId: The public ID of the entity
246 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
249 name, type, publicId, systemId, content);
290 * @publicId: The public ID of the entity
297 const xmlChar *publicId, const xmlChar *systemId)
300 (char *) name, (char *) publicId, (cha
245 entityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, int type, const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) argument
296 notationDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId) argument
314 unparsedEntityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) argument
[all...]
H A DtestSAX.c352 * @publicId: The public ID of the entity
364 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId) argument
373 if (publicId != NULL)
374 fprintf(stdout, "%s", (char *)publicId);
433 * @publicId: The public ID of the entity
441 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
445 if (publicId == NULL)
446 publicId = nullstr;
455 name, type, publicId, systemId, content);
507 * @publicId
440 entityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, int type, const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) argument
513 notationDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId) argument
534 unparsedEntityDeclDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) argument
[all...]
H A Dlegacy.c906 * @publicId: The public ID of the entity
919 resolveEntity(void *ctx, const xmlChar * publicId, argument
923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId));
966 * @publicId: The public ID of the entity
975 const xmlChar * publicId, const xmlChar * systemId,
979 xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content);
1027 * @publicId: The public ID of the entity
1035 const xmlChar * publicId, const xmlChar * systemId)
1038 xmlSAX2NotationDecl(ctx, name, publicId, systemId);
1045 * @publicId
974 entityDecl(void *ctx, const xmlChar * name, int type, const xmlChar * publicId, const xmlChar * systemId, xmlChar * content) argument
1034 notationDecl(void *ctx, const xmlChar * name, const xmlChar * publicId, const xmlChar * systemId) argument
1053 unparsedEntityDecl(void *ctx, const xmlChar * name, const xmlChar * publicId, const xmlChar * systemId, const xmlChar * notationName) argument
[all...]
H A DSAX2.c506 * @publicId: The public ID of the entity
518 xmlSAX2ResolveEntity(void *ctx, const xmlChar *publicId, const xmlChar *systemId) argument
535 "SAX.xmlSAX2ResolveEntity(%s, %s)\n", publicId, systemId);
539 (const char *) publicId, ctxt);
656 * @publicId: The public ID of the entity
664 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
673 name, type, publicId, systemId, content);
676 ent = xmlAddDocEntity(ctxt->myDoc, name, type, publicId,
695 ent = xmlAddDtdEntity(ctxt->myDoc, name, type, publicId,
841 * @publicId
663 xmlSAX2EntityDecl(void *ctx, const xmlChar *name, int type, const xmlChar *publicId, const xmlChar *systemId, xmlChar *content) argument
847 xmlSAX2NotationDecl(void *ctx, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId) argument
898 xmlSAX2UnparsedEntityDecl(void *ctx, const xmlChar *name, const xmlChar *publicId, const xmlChar *systemId, const xmlChar *notationName) argument
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java236 * @param publicId The entity's public identifier, or null.
248 public InputSource resolveEntity(String publicId, String systemId) argument
254 return m_entityResolver.resolveEntity(publicId, systemId);
270 * @param publicId The notation's public identifier, or null.
276 public void notationDecl(String name, String publicId, String systemId) argument
282 m_dtdHandler.notationDecl(name, publicId, systemId);
290 * @param publicId The entity's public identifier, or null.
298 String name, String publicId, String systemId, String notationName)
304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName);
759 * @param publicId Th
297 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
768 startDTD(String name, String publicId, String systemId) argument
1024 externalEntityDecl( String name, String publicId, String systemId) argument
[all...]
H A DTransformerIdentityImpl.java817 * @param publicId The notation public identifier, or null if not
826 public void notationDecl(String name, String publicId, String systemId) argument
830 m_resultDTDHandler.notationDecl(name, publicId, systemId);
841 * @param publicId The entity public identifier, or null if not
852 String name, String publicId, String systemId, String notationName)
857 m_resultDTDHandler.unparsedEntityDecl(name, publicId, systemId,
1210 * @param publicId The declared public identifier for the
1219 public void startDTD(String name, String publicId, String systemId) argument
1224 m_resultLexicalHandler.startDTD(name, publicId, systemId);
1410 * @param publicId Th
851 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
1417 externalEntityDecl(String name, String publicId, String systemId) argument
[all...]
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
H A DLocalEntityResolver.java32 public InputSource resolveEntity(final String publicId, String systemId) argument
/external/libxml2/include/libxml/
H A DSAX.h64 const xmlChar *publicId,
71 const xmlChar *publicId,
90 const xmlChar *publicId,
95 const xmlChar *publicId,
H A DSAX2.h62 const xmlChar *publicId,
69 const xmlChar *publicId,
88 const xmlChar *publicId,
93 const xmlChar *publicId,
H A Dparser.h338 * @publicId: The public ID of the entity
351 const xmlChar *publicId,
406 * @publicId: The public ID of the entity
415 const xmlChar *publicId,
422 * @publicId: The public ID of the entity
429 const xmlChar *publicId,
467 * @publicId: The public ID of the entity
475 const xmlChar *publicId,
/external/python/cpython2/Lib/xml/dom/
H A Dxmlbuilder.py215 def resolveEntity(self, publicId, systemId):
218 source.publicId = publicId
258 'encoding', 'publicId', 'systemId', 'baseURI')
265 self.publicId = None
290 return self.publicId
291 def _set_publicId(self, publicId):
292 self.publicId = publicId
H A Dexpatbuilder.py240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId,
243 doctypeName, publicId, systemId)
310 base, systemId, publicId, notationName):
316 node = self.document._create_entity(entityName, publicId,
327 def notation_decl_handler(self, notationName, base, systemId, publicId):
328 node = self.document._create_notation(notationName, publicId, systemId)
347 def external_entity_ref_handler(self, context, base, systemId, publicId):
637 if doctype.publicId:
639 % (doctype.publicId, doctype.systemId))
670 if notation.publicId
[all...]
H A Dminidom.py1221 """Mix-in class that supports the publicId and systemId attributes."""
1224 # __slots__ = 'publicId', 'systemId'
1226 def _identified_mixin_init(self, publicId, systemId):
1227 self.publicId = publicId
1231 return self.publicId
1240 publicId = None variable in class:DocumentType
1266 notation = Notation(n.nodeName, n.publicId, n.systemId)
1270 entity = Entity(e.nodeName, e.publicId, e.systemId,
1285 if self.publicId
[all...]
/external/apache-xml/src/main/java/org/apache/xalan/processor/
H A DXSLTElementProcessor.java84 * @param publicId The public identifer, or null if none is
92 StylesheetHandler handler, String publicId, String systemId)
104 * @param publicId The notation public identifier, or null if not
110 String publicId, String systemId)
122 * @param publicId The entity public identifier, or null if not
129 String publicId, String systemId,
91 resolveEntity( StylesheetHandler handler, String publicId, String systemId) argument
109 notationDecl(StylesheetHandler handler, String name, String publicId, String systemId) argument
128 unparsedEntityDecl(StylesheetHandler handler, String name, String publicId, String systemId, String notationName) argument
H A DStylesheetHandler.java298 * @param publicId The public identifer, or null if none is
307 public InputSource resolveEntity(String publicId, String systemId) argument
310 return getCurrentProcessor().resolveEntity(this, publicId, systemId);
325 * @param publicId The notation public identifier, or null if not
330 public void notationDecl(String name, String publicId, String systemId) argument
332 getCurrentProcessor().notationDecl(this, name, publicId, systemId);
339 * @param publicId The entity public identifier, or null if not
345 public void unparsedEntityDecl(String name, String publicId, argument
348 getCurrentProcessor().unparsedEntityDecl(this, name, publicId, systemId,
/external/expat/lib/
H A Dexpat.h322 non-NULL. The publicId argument will be NULL unless a public
337 const XML_Char *publicId,
358 const XML_Char *publicId,
370 const XML_Char *publicId);
413 The publicId argument is the public identifier as specified in the
437 const XML_Char *publicId);
696 argument (the publicId and context arguments will be NULL as well).
/external/python/cpython2/Modules/expat/
H A Dexpat.h322 non-NULL. The publicId argument will be NULL unless a public
337 const XML_Char *publicId,
358 const XML_Char *publicId,
370 const XML_Char *publicId);
413 The publicId argument is the public identifier as specified in the
437 const XML_Char *publicId);
696 argument (the publicId and context arguments will be NULL as well).
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DToUnknownStream.java748 String publicId,
756 m_handler.externalEntityDecl(name, publicId, systemId);
944 public void startDTD(String name, String publicId, String systemId) argument
947 m_handler.startDTD(name, publicId, systemId);
746 externalEntityDecl( String name, String publicId, String systemId) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/cldr/
H A DTestCLDRVsICU.java626 public void notationDecl(String name, String publicId, String systemId) throws SAXException {
627 logln("notationDecl: " + name + ", " + publicId + ", " + systemId);
638 public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName)
640 logln("unparsedEntityDecl: " + name + ", " + publicId + ", " + systemId + ", " + notationName);
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/cldr/
H A DTestCLDRVsICU.java625 public void notationDecl(String name, String publicId, String systemId) throws SAXException {
626 logln("notationDecl: " + name + ", " + publicId + ", " + systemId);
637 public void unparsedEntityDecl(String name, String publicId, String systemId, String notationName)
639 logln("unparsedEntityDecl: " + name + ", " + publicId + ", " + systemId + ", " + notationName);
/external/skia/src/xml/
H A DSkXMLParser.cpp120 const XML_Char *publicId,
113 entity_decl_handler(void *data, const XML_Char *entityName, int is_parameter_entity, const XML_Char *value, int value_length, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId, const XML_Char *notationName) argument
/external/python/cpython2/Modules/
H A Dpyexpat.c236 const XML_Char *publicId)
631 const XML_Char *publicId,
635 string_intern(self, systemId), string_intern(self, publicId),
647 const XML_Char *publicId,
653 string_intern(self, publicId),
664 const XML_Char *publicId,
672 string_intern(self, publicId),
791 const XML_Char *publicId),
794 string_intern(self, systemId), string_intern(self, publicId)))
851 const XML_Char *publicId),
232 error_external_entity_ref_handler(XML_Parser parser, const XML_Char *context, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument
[all...]

Completed in 551 milliseconds

1234