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

123

/dalvik/libcore/xml/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
/dalvik/libcore/xml/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.java190 * parse(new InputSource(systemId));
196 * @param systemId The system identifier (URI).
204 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
/dalvik/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
/dalvik/libcore/xml/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...]
/dalvik/libcore/xml/src/main/java/javax/xml/transform/sax/
H A DSAXResult.java103 * @param systemId The system identifier as a URI string.
105 public void setSystemId(String systemId) { argument
106 this.systemId = systemId;
116 return systemId;
137 private String systemId; field in class:SAXResult
H A DSAXSource.java142 * @param systemId The system identifier as a URI string.
144 public void setSystemId(String systemId) { argument
147 inputSource = new InputSource(systemId);
149 inputSource.setSystemId(systemId);
/dalvik/libcore/xml/src/main/java/javax/xml/transform/stream/
H A DStreamResult.java78 * @param systemId Must be a String that conforms to the URI syntax.
80 public StreamResult(String systemId) { argument
81 this.systemId = systemId;
144 * @param systemId The system identifier as a URI string.
146 public void setSystemId(String systemId) { argument
147 this.systemId = systemId;
162 this.systemId = FilePathToURI.filepath2URI(f.getAbsolutePath());
172 return systemId;
184 private String systemId; field in class:StreamResult
[all...]
H A DStreamSource.java87 * @param systemId Must be a String that conforms to the URI syntax.
89 public StreamSource(InputStream inputStream, String systemId) { argument
91 setSystemId(systemId);
117 * @param systemId Must be a String that conforms to the URI syntax.
119 public StreamSource(Reader reader, String systemId) { argument
121 setSystemId(systemId);
127 * @param systemId Must be a String that conforms to the URI syntax.
129 public StreamSource(String systemId) { argument
130 this.systemId = systemId;
227 setSystemId(String systemId) argument
262 private String systemId; field in class:StreamSource
[all...]
/dalvik/libcore/xml/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
/dalvik/libcore/xml/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
/dalvik/libcore/xml/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 + "]");
/dalvik/libcore/xml/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
/dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
H A DTrAXFilter.java178 * @param systemId The system identifier as a fully-qualified URI.
186 public void parse (String systemId) argument
189 parse(new InputSource(systemId));
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DNodeLocator.java44 * @param systemId a <code>String</code> value
48 public NodeLocator(String publicId, String systemId, argument
52 this.m_systemId = systemId;
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/utils/
H A DSystemIDResolver.java109 * Return true if the systemId denotes an absolute URI .
111 * @param systemId The systemId string
112 * @return true if the systemId is an an absolute URI
114 public static boolean isAbsoluteURI(String systemId) argument
122 * %REVIEW% Can we assume here that systemId is a valid URI?
127 if(isWindowsAbsolutePath(systemId)){
131 final int fragmentIndex = systemId.indexOf('#');
132 final int queryIndex = systemId.indexOf('?');
133 final int slashIndex = systemId
155 isAbsolutePath(String systemId) argument
170 isWindowsAbsolutePath(String systemId) argument
223 getAbsoluteURI(String systemId) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/utils/
H A DSystemIDResolver.java102 * Return true if the systemId denotes an absolute URI .
104 * @param systemId The systemId string
105 * @return true if the systemId is an an absolute URI
107 public static boolean isAbsoluteURI(String systemId) argument
115 * %REVIEW% Can we assume here that systemId is a valid URI?
120 if(isWindowsAbsolutePath(systemId)){
124 final int fragmentIndex = systemId.indexOf('#');
125 final int queryIndex = systemId.indexOf('?');
126 final int slashIndex = systemId
148 isAbsolutePath(String systemId) argument
163 isWindowsAbsolutePath(String systemId) argument
216 getAbsoluteURI(String systemId) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/xml/sax/ext/
H A DDeclHandler.java135 * @param systemId The entity's system identifier.
141 String systemId)
140 externalEntityDecl(String name, String publicId, String systemId) argument
H A DLexicalHandler.java76 * @param systemId The declared system identifier for the
86 String systemId)
85 startDTD(String name, String publicId, String systemId) argument

Completed in 198 milliseconds

123