Searched defs:publicId (Results 1 - 25 of 28) sorted by relevance

12

/libcore/luni/src/main/java/org/xml/sax/
H A DEntityResolver.java45 * public InputSource resolveEntity (String publicId, String systemId)
99 * @param publicId The public identifier of the external entity
113 public abstract InputSource resolveEntity (String publicId, argument
H A DDTDHandler.java62 * <p>At least one of publicId and systemId must be non-null.
71 * @param publicId The notation's public identifier, or null if
81 String publicId,
102 * @param publicId The entity's public identifier, or null if none
110 String publicId,
80 notationDecl(String name, String publicId, String systemId) argument
109 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
H A DSAXParseException.java108 * @param publicId The public identifier of the entity that generated
117 public SAXParseException (String message, String publicId, String systemId,
121 init(publicId, systemId, lineNumber, columnNumber);
139 * @param publicId The public identifier of the entity that generated
149 public SAXParseException (String message, String publicId, String systemId,
153 init(publicId, systemId, lineNumber, columnNumber);
160 * @param publicId The public identifier of the entity which generated the exception,
167 private void init (String publicId, String systemId,
170 this.publicId = publicId;
116 SAXParseException(String message, String publicId, String systemId, int lineNumber, int columnNumber) argument
148 SAXParseException(String message, String publicId, String systemId, int lineNumber, int columnNumber, Exception e) argument
166 init(String publicId, String systemId, int lineNumber, int columnNumber) argument
244 private String publicId; field in class:SAXParseException
[all...]
H A DInputSource.java148 * @param publicId The public identifier as a string.
153 public void setPublicId (String publicId) argument
155 this.publicId = publicId;
167 return publicId;
330 private String publicId;
329 private String publicId; field in class:InputSource
H A DHandlerBase.java65 * @param publicId The public identifer, or null if none is
75 public InputSource resolveEntity (String publicId, String systemId)
97 * @param publicId The notation public identifier, or null if not
102 public void notationDecl (String name, String publicId, String systemId)
116 * @param publicId The entity public identifier, or null if not
122 public void unparsedEntityDecl (String name, String publicId,
74 resolveEntity(String publicId, String systemId) argument
100 notationDecl(String name, String publicId, String systemId) argument
120 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/libcore/luni/src/main/java/org/xml/sax/ext/
H A DEntityResolver2.java167 * @param publicId The public identifier of the external entity being
192 String publicId,
190 resolveEntity( String name, String publicId, String baseURI, String systemId ) argument
H A DDeclHandler.java133 * @param publicId The entity's public identifier, or null if none
140 public abstract void externalEntityDecl (String name, String publicId, argument
H A DLexicalHandler.java74 * @param publicId The declared public identifier for the
85 public abstract void startDTD (String name, String publicId, argument
H A DDefaultHandler2.java54 public void startDTD (String name, String publicId, String systemId) argument
87 String publicId, String systemId)
134 * @param publicId The public identifier of the external entity being
154 public InputSource resolveEntity (String name, String publicId, argument
167 * @param publicId The public identifier of the external entity being
182 public InputSource resolveEntity (String publicId, String systemId) argument
184 { return resolveEntity (null, publicId, null, systemId); }
86 externalEntityDecl(String name, String publicId, String systemId) argument
/libcore/dom/src/test/java/org/w3c/domts/
H A DJTidyDOMImplementation.java59 * @param publicId The external subset public identifier.
77 String publicId,
76 createDocumentType(String qualifiedName, String publicId, String systemId) argument
/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMImplementation.java39 * @param publicId The external subset public identifier.
54 String publicId,
53 createDocumentType(String qualifiedName, String publicId, String systemId) argument
/libcore/luni/src/main/java/org/w3c/dom/ls/
H A DLSResourceResolver.java63 * @param publicId The public identifier of the external entity being
77 String publicId,
75 resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) argument
H A DLSInput.java44 * <li> <code>LSInput.publicId</code>
165 public void setPublicId(String publicId); argument
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/
H A DMockResolver.java34 public void addEntity(String publicId, String systemId, InputSource source) { argument
35 entities.put("[" + publicId + ":" + systemId + "]", source);
38 public void removeEntity(String publicId, String systemId) { argument
39 entities.remove("[" + publicId + ":" + systemId + "]");
42 public InputSource resolveEntity(String publicId, String systemId) argument
44 return entities.get("[" + publicId + ":" + systemId + "]");
H A DMockHandler.java77 public void notationDecl(String name, String publicId, String systemId) throws SAXException { argument
78 logger.add("notationDecl", name, publicId, systemId);
110 public void unparsedEntityDecl(String name, String publicId, String systemId, argument
112 logger.add("unparsedEntityDecl", name, publicId, systemId, notationName);
139 public void startDTD(String name, String publicId, String systemId) throws SAXException { argument
140 logger.add("startDTD", name, publicId, systemId);
/libcore/luni/src/main/java/javax/xml/transform/stream/
H A DStreamSource.java198 * @param publicId The public identifier as a string.
200 public void setPublicId(String publicId) { argument
201 this.publicId = publicId;
211 return publicId;
256 private String publicId; field in class:StreamSource
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDOMImplementationImpl.java48 String publicId, String systemId) throws DOMException {
49 return new DocumentTypeImpl(null, qualifiedName, publicId, systemId);
47 createDocumentType(String qualifiedName, String publicId, String systemId) argument
H A DDocumentTypeImpl.java38 private String publicId; field in class:DocumentTypeImpl
43 String publicId, String systemId) {
69 this.publicId = publicId;
103 return publicId;
42 DocumentTypeImpl(DocumentImpl document, String qualifiedName, String publicId, String systemId) argument
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DLocatorImpl.java103 return publicId;
157 * @param publicId The new public identifier, or null
161 public void setPublicId (String publicId)
163 this.publicId = publicId;
210 private String publicId;
159 setPublicId(String publicId) argument
207 private String publicId; field in class:LocatorImpl
H A DDefaultHandler.java77 * @param publicId The public identifer, or null if none is
89 public InputSource resolveEntity (String publicId, String systemId)
111 * @param publicId The notation public identifier, or null if not
118 public void notationDecl (String name, String publicId, String systemId)
133 * @param publicId The entity public identifier, or null if not
141 public void unparsedEntityDecl (String name, String publicId,
88 resolveEntity(String publicId, String systemId) argument
116 notationDecl(String name, String publicId, String systemId) argument
139 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
H A DXMLFilterImpl.java366 * @param publicId The entity's public identifier, or null.
375 public InputSource resolveEntity (String publicId, String systemId)
379 return entityResolver.resolveEntity(publicId, systemId);
397 * @param publicId The notation's public identifier, or null. argument
402 public void notationDecl (String name, String publicId, String systemId)
406 dtdHandler.notationDecl(name, publicId, systemId);
415 * @param publicId The entity's public identifier, or null.
421 public void unparsedEntityDecl (String name, String publicId,
426 dtdHandler.unparsedEntityDecl(name, publicId, systemId,
371 resolveEntity(String publicId, String systemId) argument
416 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/libcore/luni/src/main/java/org/apache/harmony/xml/
H A DExpatReader.java300 private void parse(Reader in, String publicId, String systemId) argument
306 publicId,
312 private void parse(InputStream in, String charsetName, String publicId, String systemId) argument
315 new ExpatParser(charsetName, this, processNamespaces, publicId, systemId);
H A DExpatParser.java57 private final String publicId; field in class:ExpatParser
80 boolean processNamespaces, String publicId, String systemId) {
81 this.publicId = publicId;
104 String publicId, String systemId) {
109 this.publicId = publicId;
203 /*package*/ void startDtd(String name, String publicId, String systemId) argument
207 lexicalHandler.startDTD(name, publicId, systemId);
226 /*package*/ void notationDecl(String name, String publicId, Strin argument
79 ExpatParser(String encoding, ExpatReader xmlReader, boolean processNamespaces, String publicId, String systemId) argument
103 ExpatParser(String encoding, ExpatReader xmlReader, long pointer, String publicId, String systemId) argument
233 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
247 handleExternalEntity(String context, String publicId, String systemId) argument
768 EntityParser(String encoding, ExpatReader xmlReader, long pointer, String publicId, String systemId) argument
[all...]
/libcore/luni/src/test/java/libcore/xml/
H A DSaxTest.java229 @Override public InputSource resolveEntity(String publicId, String systemId) { argument
232 @Override public void notationDecl(String name, String publicId, String systemId) { argument
236 String name, String publicId, String systemId, String notationName) {
235 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
H A DExpatSaxParserTest.java373 assertEquals("bar", handler.publicId);
411 String publicId; field in class:ExpatSaxParserTest.TestDtdHandler
426 public void startDTD(String name, String publicId, String systemId) { argument
428 this.publicId = publicId;
443 public void notationDecl(String name, String publicId, String systemId) { argument
445 this.ndPublicId = publicId;
450 public void unparsedEntityDecl(String entityName, String publicId, String systemId, String notationName) { argument
452 this.uePublicId = publicId;
528 public InputSource resolveEntity(String publicId, Strin
[all...]

Completed in 174 milliseconds

12