HomeSort by relevance Sort by last modified time
    Searched full:systemid (Results 26 - 50 of 246) sorted by null

12 3 4 5 6 7 8 910

  /libcore/luni/src/main/java/javax/xml/transform/dom/
DOMSource.java 49 private String systemID;
87 * @param systemID Specifies the base URI associated with node.
89 public DOMSource(Node node, String systemID) {
91 setSystemId(systemID);
116 * @param systemID Base URL for this DOM tree.
118 public void setSystemId(String systemID) {
119 this.systemID = systemID;
129 return this.systemID;
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/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/luni/src/test/java/tests/api/org/xml/sax/ext/
DefaultHandler2Test.java 52 h.startDTD("name", "publicId", "systemId");
108 h.externalEntityDecl("name", "publicId", "systemId");
134 assertNull(h.resolveEntity("publicId", "systemId"));
145 "systemId"));
  /external/libxml2/
entities.c 114 if ((entity->SystemID != NULL) &&
115 (!xmlDictOwns(dict, entity->SystemID)))
116 xmlFree((char *) entity->SystemID);
129 if (entity->SystemID != NULL)
130 xmlFree((char *) entity->SystemID);
148 const xmlChar *ExternalID, const xmlChar *SystemID,
169 if (SystemID != NULL)
170 ret->SystemID = xmlStrdup(SystemID);
175 if (SystemID != NULL
    [all...]
  /external/webkit/Source/WebCore/dom/
Notation.cpp 28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& systemId)
32 , m_systemId(systemId)
Notation.h 34 const String& systemId() const { return m_systemId; }
37 Notation(Document*, const String& name, const String& publicId, const String& systemId);
Notation.idl 24 readonly attribute [ConvertNullStringTo=Null] DOMString systemId;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMImplementationCreateDocumentType.java 35 * and systemId should create an empty DocumentType node.
82 String systemId;
96 systemId = (String) systemIds.get(indexN10061);
98 publicId, systemId);
115 String systemId = "dom2.dtd";
138 systemId);
152 String systemId = "dom2.dtd";
175 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);
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);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatReader.java 286 String systemId = input.getSystemId();
287 if (systemId == null) {
292 in = ExpatParser.openUrl(systemId);
294 parse(in, encoding, input.getPublicId(), systemId);
300 private void parse(Reader in, String publicId, String systemId)
307 systemId
312 private void parse(InputStream in, String charsetName, String publicId, String systemId)
315 new ExpatParser(charsetName, this, processNamespaces, publicId, systemId);
319 public void parse(String systemId) throws IOException, SAXException {
320 parse(new InputSource(systemId));
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
NodeLocator.java 44 * @param systemId a <code>String</code> value
48 public NodeLocator(String publicId, String systemId,
52 this.m_systemId = systemId;
  /libcore/luni/src/main/java/javax/xml/transform/sax/
TemplatesHandler.java 51 * @param systemID Base URI for this stylesheet.
53 public void setSystemId(String systemID);
58 * @return The systemID that was set with {@link #setSystemId}.
TransformerHandler.java 50 * @param systemID Base URI for the source tree.
52 public void setSystemId(String systemID);
57 * @return The systemID that was set with {@link #setSystemId}.
  /libcore/luni/src/test/java/tests/api/org/xml/sax/
HandlerBaseTest.java 40 h.resolveEntity("publicID", "systemID");
47 h.notationDecl("name", "publicID", "systemID");
51 h.unparsedEntityDecl("name", "publicID", "systemID", "notationName");
  /external/libxml2/include/libxml/
entities.h 54 const xmlChar *SystemID; /* URI for a SYSTEM or PUBLIC Entity */
86 const xmlChar *SystemID,
93 const xmlChar *SystemID,
100 const xmlChar *SystemID,
  /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);
  /libcore/luni/src/test/java/libcore/xml/
ExpatSaxParserTest.java 374 assertEquals("tee", handler.systemId);
412 String systemId;
426 public void startDTD(String name, String publicId, String systemId) {
429 this.systemId = systemId;
443 public void notationDecl(String name, String publicId, String systemId) {
446 this.ndSystemId = systemId;
450 public void unparsedEntityDecl(String entityName, String publicId, String systemId, String notationName) {
453 this.ueSystemId = systemId;
528 public InputSource resolveEntity(String publicId, String systemId)
    [all...]
  /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/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);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockParser.java 44 public void parse(String systemId) throws SAXException, IOException {
45 logger.add("parse", systemId);

Completed in 302 milliseconds

12 3 4 5 6 7 8 910