/libcore/luni/src/main/java/javax/xml/transform/stream/ |
StreamResult.java | 77 * @param systemId Must be a String that conforms to the URI syntax. 79 public StreamResult(String systemId) { 80 this.systemId = systemId; 139 * Set the systemID that may be used in association 143 * @param systemId The system identifier as a URI string. 145 public void setSystemId(String systemId) { 146 this.systemId = systemId; 161 this.systemId = FilePathToURI.filepath2URI(f.getAbsolutePath()) [all...] |
StreamSource.java | 81 * <p>This constructor allows the systemID to be set in addition 86 * @param systemId Must be a String that conforms to the URI syntax. 88 public StreamSource(InputStream inputStream, String systemId) { 90 setSystemId(systemId); 116 * @param systemId Must be a String that conforms to the URI syntax. 118 public StreamSource(Reader reader, String systemId) { 120 setSystemId(systemId); 126 * @param systemId Must be a String that conforms to the URI syntax. 128 public StreamSource(String systemId) { 129 this.systemId = systemId [all...] |
/libcore/luni/src/main/java/javax/xml/transform/ |
Source.java | 36 * @param systemId The system identifier as a URL string. 38 public void setSystemId(String systemId);
|
Result.java | 69 * @param systemId The system identifier as a URI string. 71 public void setSystemId(String systemId);
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/utils/ |
SystemIDResolver.java | 30 * This class is used to resolve relative URIs and SystemID 109 * 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) 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('?') [all...] |
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
SystemIDResolver.java | 30 * This class is used to resolve relative URIs and SystemID 102 * 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) 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('?') [all...] |
/libcore/luni/src/main/java/org/xml/sax/ |
InputSource.java | 86 * @param systemId The system identifier (URI). 93 public InputSource (String systemId) 95 setSystemId(systemId); 188 * @param systemId The system identifier as a string. 194 public void setSystemId (String systemId) 196 this.systemId = systemId; 214 return systemId; 331 private String systemId;
|
SAXParseException.java | 110 * @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; [all...] |
DTDHandler.java | 62 * <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,
|
EntityResolver.java | 45 * 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)
|
HandlerBase.java | 67 * @param systemId The system identifier provided in the XML 75 public InputSource resolveEntity (String publicId, String systemId) 99 * @param systemId The notation system identifier. 102 public void notationDecl (String name, String publicId, String systemId) 118 * @param systemId The entity system identifier. 123 String systemId, String notationName)
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/cenc/ |
ProtectionSystemSpecificHeaderBox.java | 19 * data format is specified by the system identified by the ?pssh? parameter SystemID, and is considered 29 * that process such presentations must match the SystemID field in this box to the SystemID(s) of the 41 byte[] systemId; 45 return systemId; 48 public void setSystemId(byte[] systemId) { 49 assert systemId.length == 16; 50 this.systemId = systemId; 73 assert systemId.length == 16 [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
MockResolver.java | 34 public void addEntity(String publicId, String systemId, InputSource source) { 35 entities.put("[" + publicId + ":" + systemId + "]", source); 38 public void removeEntity(String publicId, String systemId) { 39 entities.remove("[" + publicId + ":" + systemId + "]"); 42 public InputSource resolveEntity(String publicId, String systemId) 44 return entities.get("[" + publicId + ":" + systemId + "]");
|
/libcore/luni/src/main/java/javax/xml/transform/sax/ |
SAXResult.java | 99 * Method setSystemId Set the systemID that may be used in association 102 * @param systemId The system identifier as a URI string. 104 public void setSystemId(String systemId) { 105 this.systemId = systemId; 115 return systemId; 133 * The systemID that may be used in association 136 private String systemId;
|
/libcore/luni/src/main/java/org/xml/sax/helpers/ |
LocatorImpl.java | 117 return systemId; 170 * @param systemId The new system identifier, or null 174 public void setSystemId (String systemId) 176 this.systemId = systemId; 211 private String systemId;
|
/libcore/luni/src/main/java/javax/xml/transform/dom/ |
DOMResult.java | 47 * <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) { 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) { 192 setSystemId(systemId); [all...] |
/libcore/luni/src/main/java/org/w3c/dom/ls/ |
LSResourceResolver.java | 66 * @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,
|
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/ |
UuidBasedProtectionSystemSpecificHeaderBox.java | 22 * unsigned int(8)[16] SystemID; 31 UUID systemId; 52 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getMostSignificantBits()); 53 IsoTypeWriter.writeUInt64(byteBuffer, systemId.getLeastSignificantBits()); 65 systemId = UUIDConverter.convert(systemIdBytes); 67 protectionSpecificHeader = ProtectionSpecificHeader.createFor(systemId, content); 71 return systemId; 74 public void setSystemId(UUID systemId) { 75 this.systemId = systemId; [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
DocumentTypeImpl.java | 40 private String systemId; 43 String publicId, String systemId) { 70 this.systemId = systemId; 107 return systemId;
|
/libcore/luni/src/main/java/org/xml/sax/ext/ |
DefaultHandler2.java | 54 public void startDTD (String name, String publicId, String systemId) 87 String publicId, String systemId) 121 * Tells the parser to resolve the systemId against the baseURI 127 * with the <em>systemId</em> already absolutized. 142 * @param systemId The system identifier of the external entity 155 String baseURI, String systemId) 170 * @param systemId The system identifier of the external entity 182 public InputSource resolveEntity (String publicId, String systemId) 184 { return resolveEntity (null, publicId, null, systemId); }
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
notationgetsystemidnull.java | 65 String systemId; 72 systemId = notationNode.getSystemId(); 73 assertNull("systemId", systemId);
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
documenttypesystemid01.java | 36 * Create a new DocumentType node with the value "SYS" for its systemId and PUB for 37 * its publicId. Check the value of the systemId and pbulicId attributes. 40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a> 68 String systemId; 73 systemId = docType.getSystemId(); 75 assertEquals("documenttypesystemid01", "SYS", systemId);
|
systemId01.java | 42 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a> 68 String systemId; 72 systemId = docType.getSystemId(); 73 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, null, null, null, systemId);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DocumentTypeSystemId.java | 34 * Create a new DocumentType node with the value "SYS" for its systemId and PUB for 35 * its publicId. Check the value of the systemId and pbulicId attributes. 38 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a> 72 String systemId; 77 systemId = docType.getSystemId(); 79 assertEquals("documenttypesystemid01", "SYS", systemId);
|
SystemId.java | 39 * href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a> 41 public final class SystemId extends DOMTestCase { 73 String systemId; 77 systemId = docType.getSystemId(); 78 assertURIEquals("systemId", null, null, null, "staffNS.dtd", null, 79 null, null, null, systemId);
|