Searched defs:systemId (Results 1 - 25 of 52) sorted by relevance

123

/libcore/luni/src/main/java/javax/xml/transform/
H A DSource.java36 * @param systemId The system identifier as a URL string.
38 public void setSystemId(String systemId); argument
H A DResult.java69 * @param systemId The system identifier as a URI string.
71 public void setSystemId(String systemId); argument
/libcore/luni/src/main/java/org/xml/sax/
H A DEntityResolver.java45 * public InputSource resolveEntity (String publicId, String systemId)
47 * if (systemId.equals("http://www.myhost.com/today")) {
101 * @param systemId The system identifier of the external entity
114 String systemId)
113 resolveEntity(String publicId, String systemId) argument
H A DDTDHandler.java62 * <p>At least one of publicId and systemId must be non-null.
73 * @param systemId The notation's system identifier, or null if
82 String systemId)
104 * @param systemId The entity's system identifier.
111 String systemId,
80 notationDecl(String name, String publicId, String systemId) argument
109 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
H A DParser.java191 * parse(new InputSource(systemId));
197 * @param systemId The system identifier (URI).
205 public abstract void parse (String systemId) argument
H A DSAXParseException.java110 * @param systemId The system identifier of the entity that generated
117 public SAXParseException (String message, String publicId, String systemId,
121 init(publicId, systemId, lineNumber, columnNumber);
141 * @param systemId The system identifier of the entity that generated
149 public SAXParseException (String message, String publicId, String systemId,
153 init(publicId, systemId, lineNumber, columnNumber);
162 * @param systemId The system identifier of the entity which generated the exception,
167 private void init (String publicId, String systemId,
171 this.systemId = systemId;
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
251 private String systemId; field in class:SAXParseException
[all...]
H A DInputSource.java86 * @param systemId The system identifier (URI).
93 public InputSource (String systemId) argument
95 setSystemId(systemId);
188 * @param systemId The system identifier as a string.
194 public void setSystemId (String systemId) argument
196 this.systemId = systemId;
214 return systemId;
331 private String systemId;
330 private String systemId; field in class:InputSource
/libcore/dom/src/test/java/org/w3c/domts/
H A DJTidyDOMImplementation.java60 * @param systemId The external subset system identifier.
78 String systemId) throws DOMException {
76 createDocumentType(String qualifiedName, String publicId, String systemId) argument
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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 DDoNothingParser.java37 public void parse(String systemId) { argument
H A DMockFilter.java85 public void parse(String systemId) throws SAXException, IOException { argument
86 logger.add("parse", systemId);
H A DMockParser.java44 public void parse(String systemId) throws SAXException, IOException { argument
45 logger.add("parse", systemId);
H A DNoAccessParser.java37 public void parse(String systemId) { argument
H A DNoInstanceParser.java40 public void parse(String systemId) { argument
H A DNoSubclassParser.java36 public void parse(String systemId) { argument
/libcore/luni/src/main/java/javax/xml/transform/dom/
H A DDOMResult.java47 * <code>systemId</code>
66 * <code>systemId</code>
89 * @param systemId The system identifier which may be used in association with this node.
91 public DOMResult(Node node, String systemId) { argument
94 setSystemId(systemId);
116 * <p><code>systemId</code> will be set to <code>null</code>.</p>
163 * then the behavior is the same as calling {@link #DOMResult(Node node, String systemId)},
168 * @param systemId The system identifier which may be used in association with this node.
175 public DOMResult(Node node, Node nextSibling, String systemId) { argument
192 setSystemId(systemId);
311 setSystemId(String systemId) argument
349 private String systemId = null; field in class:DOMResult
[all...]
/libcore/luni/src/main/java/javax/xml/transform/sax/
H A DSAXResult.java102 * @param systemId The system identifier as a URI string.
104 public void setSystemId(String systemId) { argument
105 this.systemId = systemId;
115 return systemId;
136 private String systemId; field in class:SAXResult
H A DSAXSource.java141 * @param systemId The system identifier as a URI string.
143 public void setSystemId(String systemId) { argument
146 inputSource = new InputSource(systemId);
148 inputSource.setSystemId(systemId);
/libcore/luni/src/main/java/javax/xml/transform/stream/
H A DStreamResult.java77 * @param systemId Must be a String that conforms to the URI syntax.
79 public StreamResult(String systemId) { argument
80 this.systemId = systemId;
143 * @param systemId The system identifier as a URI string.
145 public void setSystemId(String systemId) { argument
146 this.systemId = systemId;
161 this.systemId = FilePathToURI.filepath2URI(f.getAbsolutePath());
171 return systemId;
183 private String systemId; field in class:StreamResult
[all...]
H A DStreamSource.java86 * @param systemId Must be a String that conforms to the URI syntax.
88 public StreamSource(InputStream inputStream, String systemId) { argument
90 setSystemId(systemId);
116 * @param systemId Must be a String that conforms to the URI syntax.
118 public StreamSource(Reader reader, String systemId) { argument
120 setSystemId(systemId);
126 * @param systemId Must be a String that conforms to the URI syntax.
128 public StreamSource(String systemId) { argument
129 this.systemId = systemId;
226 setSystemId(String systemId) argument
261 private String systemId; field in class:StreamSource
[all...]
/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMImplementation.java40 * @param systemId The external subset system identifier.
55 String systemId)
53 createDocumentType(String qualifiedName, String publicId, String systemId) argument
/libcore/luni/src/main/java/org/w3c/dom/ls/
H A DLSResourceResolver.java66 * @param systemId The system identifier, a URI reference [<a href='http://www.ietf.org/rfc/rfc2396.txt'>IETF RFC 2396</a>], of the
78 String systemId,
75 resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) argument
H A DLSOutput.java40 * <li> <code>LSOutput.systemId</code>
85 public void setSystemId(String systemId); argument
/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.java40 private String systemId; field in class:DocumentTypeImpl
43 String publicId, String systemId) {
70 this.systemId = systemId;
107 return systemId;
42 DocumentTypeImpl(DocumentImpl document, String qualifiedName, String publicId, String systemId) argument

Completed in 584 milliseconds

123