HomeSort by relevance Sort by last modified time
    Searched defs:systemId (Results 1 - 25 of 308) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/model/
SystemIdInfo.java 46 public final int systemId;
48 public SystemIdInfo(@NonNull String workSpecId, int systemId) {
50 this.systemId = systemId;
60 if (systemId != that.systemId) return false;
67 result = 31 * result + 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/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/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/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...]
  /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/dom/src/test/java/org/w3c/domts/level1/core/
entitygetpublicid.java 71 String systemId;
81 systemId = entityNode.getSystemId();
82 assertURIEquals("systemId", null, null, null, "entityFile", null, null, null, null, systemId);
notationgetsystemid.java 68 String systemId;
76 systemId = notationNode.getSystemId();
77 assertURIEquals("uriEquals", null, null, null, "notation2File", null, null, null, null, systemId);
notationgetsystemidnull.java 65 String systemId;
72 systemId = notationNode.getSystemId();
73 assertNull("systemId", systemId);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
createDocumentType01.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
39 * Invoke method createDocumentType(qualifiedName,publicId,systemId)
41 * string "prefix::local", publicId as "STAFF", and systemId as "staff".
72 String systemId = "staff.xml";
83 newType = domImpl.createDocumentType(malformedName, publicId, systemId);
createDocumentType04.java 61 String systemId = "myDoc.dtd";
71 docType = domImpl.createDocumentType("", publicId, systemId);
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);
createDocumentType02.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on
70 String systemId = "myDoc.dtd";
113 docType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
createDocumentType03.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on
70 String systemId = "myDoc.dtd";
79 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype01.java 35 * systemId should create an empty DocumentType node.
72 String systemId;
86 systemId = (String) systemIds.get(indexN10061);
87 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype02.java 48 * systemId should create an empty DocumentType node.
51 * and a valid publicId and systemId. Check if the the DocumentType node was created
84 String systemId = "dom2.dtd";
106 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype04.java 82 String systemId = "dom2.dtd";
108 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
  /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...]
  /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);
  /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/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;

Completed in 776 milliseconds

1 2 3 4 5 6 7 8 91011>>