HomeSort by relevance Sort by last modified time
    Searched full:systemid (Results 51 - 75 of 377) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/piff/
ProtectionSpecificHeader.java 38 public static ProtectionSpecificHeader createFor(UUID systemId, ByteBuffer bufferWrapper) {
39 final Class<? extends ProtectionSpecificHeader> aClass = uuidRegistry.get(systemId);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
MockParser.java 44 public void parse(String systemId) throws SAXException, IOException {
45 logger.add("parse", systemId);
MockFilter.java 85 public void parse(String systemId) throws SAXException, IOException {
86 logger.add("parse", systemId);
MockReader.java 91 public void parse(String systemId) throws IOException, SAXException {
92 logger.add("parse", systemId);
  /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);
TransformerException.java 217 String systemID = locator.getSystemId();
221 if (null != systemID) {
222 sbuffer.append("; SystemID: ");
223 sbuffer.append(systemID);
250 String systemID = locator.getSystemId();
254 if (null != systemID) {
255 sbuffer.append("; SystemID: ");
256 sbuffer.append(systemID);
  /external/libxml2/os400/libxmlrpg/
SAX.rpgle 51 d SystemID * value options(*string) const xmlChar *
57 d SystemID * value options(*string) const xmlChar *
74 d systemId * value options(*string) const xmlChar *
81 d systemId * value options(*string) const xmlChar *
103 d systemId * value options(*string) const xmlChar *
110 d systemId * value options(*string) const xmlChar *
SAX2.rpgle 54 d SystemID * value options(*string) const xmlChar *
61 d SystemID * value options(*string) const xmlChar *
80 d systemId * value options(*string) const xmlChar *
88 d systemId * value options(*string) const xmlChar *
113 d systemId * value options(*string) const xmlChar *
120 d systemId * value options(*string) const xmlChar *
  /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;
XMLFilterImpl.java 342 * @param systemId The system identifier as a fully-qualified URI.
349 public void parse (String systemId)
352 parse(new InputSource(systemId));
367 * @param systemId The entity's system identifier.
375 public InputSource resolveEntity (String publicId, String systemId)
379 return entityResolver.resolveEntity(publicId, systemId);
398 * @param systemId The notation's system identifier, or null.
402 public void notationDecl (String name, String publicId, String systemId)
406 dtdHandler.notationDecl(name, publicId, systemId);
416 * @param systemId The entity's system identifier, or null
    [all...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
dom.py 120 systemId = token["systemId"]
123 doctype = domimpl.createDocumentType(name, publicId, systemId)
176 if element.publicId or element.systemId:
178 systemId = element.systemId or ""
180 (' ' * indent, element.name, publicId, systemId))
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_adapters/
htmlparser2.js 123 exports.setDocumentType = function (document, name, publicId, systemId) {
124 var data = Doctype.serializeContent(name, publicId, systemId),
138 doctypeNode['x-systemId'] = systemId;
148 'x-systemId': systemId
298 return doctypeNode['x-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;
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,
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
_base.py 108 def doctype(self, name, publicId=None, systemId=None, correct=True):
111 assert is_text_or_none(systemId), type(systemId)
116 "systemId": to_text(systemId),
__init__.py 126 token["systemId"] if token["systemId"] else ""))
127 elif token["systemId"]:
131 token["systemId"]))
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentimportnode19.java 87 String systemId;
108 systemId = entity2.getSystemId();
110 assertEquals("documentimportnode19_Ent2SystemId", systemId, systemIdImp);
111 systemId = entity6.getSystemId();
113 assertEquals("documentimportnode19_Ent6SystemId", systemId, systemIdImp);
importNode08.java 42 * to this document whose systemId is "staff.dtd"
46 * @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>
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
notationgetsystemid.java 68 String systemId;
76 systemId = notationNode.getSystemId();
77 assertURIEquals("uriEquals", null, null, null, "notation2File", null, null, null, null, systemId);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/helpers/
DefaultHandlerTest.java 41 h.resolveEntity("publicID", "systemID");
51 h.notationDecl("name", "publicID", "systemID");
59 h.unparsedEntityDecl("name", "publicID", "systemID",
  /libcore/xml/src/main/java/org/xmlpull/v1/sax2/
Driver.java 71 protected String systemId;
163 public String getSystemId() { return systemId; }
273 systemId = source.getSystemId();
283 systemId = source.getSystemId();
284 if(systemId == null) {
286 "null source systemId" , this);
292 final URL url = new URL(systemId);
296 stream = new FileInputStream(systemId);
299 "could not open file with systemId "+systemId, this, fnfe)
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTMException.java 225 String systemID = locator.getSystemId();
229 if (null != systemID) {
230 sbuffer.append("; SystemID: ");
231 sbuffer.append(systemID);
258 String systemID = locator.getSystemId();
262 if (null != systemID) {
263 sbuffer.append("; SystemID: ");
264 sbuffer.append(systemID);
  /external/libxml2/
testHTML.c 150 const xmlChar *ExternalID, const xmlChar *SystemID)
157 if (SystemID == NULL)
160 fprintf(stdout, " %s)\n", SystemID);
167 * @systemId: The system ID of the entity
178 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
188 if (systemId != NULL)
189 fprintf(stdout, ", %s)\n", (char *)systemId);
193 if (systemId != NULL) {
194 return(xmlNewInputFromFile(ctxt, (char *) systemId));
239 * @systemId: The system ID of the entit
    [all...]
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 48 String publicId, String systemId) throws DOMException {
49 return new DocumentTypeImpl(null, qualifiedName, publicId, systemId);
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 200 * @param systemID Base URI for the source tree.
202 public void setSystemId(String systemID)
204 m_baseSystemID = systemID;
205 m_dtm.setDocumentBaseURI(systemID);
211 * @return The systemID that was set with {@link #setSystemId}.
237 * @param systemId The entity's system identifier.
248 public InputSource resolveEntity(String publicId, String systemId)
254 return m_entityResolver.resolveEntity(publicId, systemId);
271 * @param systemId The notation's system identifier, or null.
276 public void notationDecl(String name, String publicId, String systemId)
    [all...]

Completed in 266 milliseconds

1 23 4 5 6 7 8 91011>>