/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...] |
/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/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 + "]");
|
MockHandler.java | 77 public void notationDecl(String name, String publicId, String systemId) throws SAXException { 78 logger.add("notationDecl", name, publicId, systemId); 110 public void unparsedEntityDecl(String name, String publicId, String systemId, 112 logger.add("unparsedEntityDecl", name, publicId, systemId, notationName); 139 public void startDTD(String name, String publicId, String systemId) throws SAXException { 140 logger.add("startDTD", name, publicId, systemId);
|
/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/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);
|
CreateDocumentType.java | 35 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a 40 * createDocumentType(qualifiedName,publicId,systemId) on the retrieved 42 * "prefix::local", publicId as "STAFF", and systemId as "staff". Method should 85 String systemId = "staff.xml"; 96 domImpl.createDocumentType(malformedName, publicId, systemId); 105 String systemId = "myDoc.dtd"; 148 systemId); 160 String systemId = "myDoc.dtd"; 169 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId); 177 String systemId = "myDoc.dtd" [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/ |
EntityImpl.java | 38 private String systemID; 41 String systemID) { 45 this.systemID = systemID; 67 return systemID;
|
NotationImpl.java | 38 private String systemID; 41 String systemID) { 60 return systemID;
|
DocumentTypeImpl.java | 40 private String systemId; 43 String publicId, String systemId) { 70 this.systemId = systemId; 107 return systemId;
|
/external/expat/xmlwf/ |
xmlfile.c | 101 resolveSystemId(const XML_Char *base, const XML_Char *systemId, 107 || *systemId == T('/') 109 || *systemId == T('\\') 110 || (isAsciiLetter(systemId[0]) && systemId[1] == T(':')) 113 return systemId; 114 *toFree = (XML_Char *)malloc((tcslen(base) + tcslen(systemId) + 2) 117 return systemId; 126 tcscpy(s, systemId); 134 const XML_Char *systemId, [all...] |
/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/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;
|
/external/webkit/Source/WebCore/dom/ |
DocumentType.h | 35 static PassRefPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId) 37 return adoptRef(new DocumentType(document, name, publicId, systemId)); 45 const String& systemId() const { return m_systemId; } 49 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Scanner.java | 39 @param systemid The systemid of the source 42 public void resetDocumentLocator(String publicid, String systemid);
|
/libcore/luni/src/main/java/org/apache/harmony/xml/ |
ExpatParser.java | 58 private final String systemId; 80 boolean processNamespaces, String publicId, String systemId) { 82 this.systemId = systemId; 104 String publicId, String systemId) { 108 this.systemId = systemId; 203 /*package*/ void startDtd(String name, String publicId, String systemId) 207 lexicalHandler.startDTD(name, publicId, systemId); 226 /*package*/ void notationDecl(String name, String publicId, String systemId) throws SAXException [all...] |
/external/libxml2/include/libxml/ |
SAX.h | 50 const xmlChar *SystemID); 55 const xmlChar *SystemID); 65 const xmlChar *systemId); 72 const xmlChar *systemId, 91 const xmlChar *systemId); 96 const xmlChar *systemId,
|
SAX2.h | 48 const xmlChar *SystemID); 53 const xmlChar *SystemID); 63 const xmlChar *systemId); 70 const xmlChar *systemId, 89 const xmlChar *systemId); 94 const xmlChar *systemId,
|
/libcore/luni/src/main/java/org/xml/sax/ |
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...] |
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
notationgetsystemidnull.java | 65 String systemId; 72 systemId = notationNode.getSystemId(); 73 assertNull("systemId", systemId);
|