HomeSort by relevance Sort by last modified time
    Searched refs:publicId (Results 1 - 25 of 373) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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/org/xml/sax/
SAXParseException.java 108 * @param publicId The public identifier of the entity that generated
117 public SAXParseException (String message, String publicId, String systemId,
121 init(publicId, systemId, lineNumber, columnNumber);
139 * @param publicId The public identifier of the entity that generated
149 public SAXParseException (String message, String publicId, String systemId,
153 init(publicId, systemId, lineNumber, columnNumber);
160 * @param publicId The public identifier of the entity which generated the exception,
167 private void init (String publicId, String systemId,
170 this.publicId = publicId;
    [all...]
DTDHandler.java 62 * <p>At least one of publicId and systemId must be non-null.
71 * @param publicId The notation's public identifier, or null if
81 String publicId,
102 * @param publicId The entity's public identifier, or null if none
110 String publicId,
InputSource.java 148 * @param publicId The public identifier as a string.
153 public void setPublicId (String publicId)
155 this.publicId = publicId;
167 return publicId;
330 private String publicId;
EntityResolver.java 45 * public InputSource resolveEntity (String publicId, String systemId)
99 * @param publicId The public identifier of the external entity
113 public abstract InputSource resolveEntity (String publicId,
HandlerBase.java 65 * @param publicId The public identifier, or null if none is
75 public InputSource resolveEntity (String publicId, String systemId)
97 * @param publicId The notation public identifier, or null if not
102 public void notationDecl (String name, String publicId, String systemId)
116 * @param publicId The entity public identifier, or null if not
122 public void unparsedEntityDecl (String name, String publicId,
  /libcore/luni/src/main/java/org/xml/sax/helpers/
LocatorImpl.java 103 return publicId;
157 * @param publicId The new public identifier, or null
161 public void setPublicId (String publicId)
163 this.publicId = publicId;
210 private String publicId;
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSResourceResolver.java 63 * @param publicId The public identifier of the external entity being
77 String publicId,
  /libcore/luni/src/main/java/javax/xml/transform/stream/
StreamSource.java 198 * @param publicId The public identifier as a string.
200 public void setPublicId(String publicId) {
201 this.publicId = publicId;
211 return publicId;
256 private String publicId;
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DocumentTypeImpl.java 38 private String publicId;
43 String publicId, String systemId) {
69 this.publicId = publicId;
103 return publicId;
  /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)
134 * @param publicId The public identifier of the external entity being
154 public InputSource resolveEntity (String name, String publicId,
167 * @param publicId The public identifier of the external entity being
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/
entitygetpublicidnull.java 69 String publicId;
76 publicId = entityNode.getPublicId();
77 assertNull("entityGetPublicIdNullAssert", publicId);
notationgetpublicid.java 64 String publicId;
71 publicId = notationNode.getPublicId();
72 assertEquals("publicId", "notation1File", publicId);
notationgetpublicidnull.java 69 String publicId;
76 publicId = notationNode.getPublicId();
77 assertNull("publicId", publicId);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documenttypepublicid01.java 36 * Create a new DocumentType node with the value "PUB" for its publicId.
37 * Check the value of the publicId attribute using getPublicId().
40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
68 String publicId;
74 publicId = docType.getPublicId();
75 assertEquals("documenttypepublicid01", "PUB", publicId);
documenttypesystemid01.java 37 * its publicId. Check the value of the systemId and pbulicId attributes.
67 String publicId;
72 publicId = docType.getPublicId();
74 assertEquals("documenttypepublicid01", "PUB", publicId);
publicId01.java 42 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
68 String publicId;
71 publicId = docType.getPublicId();
72 assertEquals("throw_Equals", "STAFF", publicId);
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".
71 String publicId = "STAFF";
83 newType = domImpl.createDocumentType(malformedName, publicId, systemId);
createDocumentType04.java 60 String publicId = "http://www.example.com/";
71 docType = domImpl.createDocumentType("", publicId, systemId);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
DocumentTypePublicId.java 36 * Create a new DocumentType node with the value "PUB" for its publicId.
37 * Check the value of the publicId attribute using getPublicId().
40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
74 String publicId;
80 publicId = docType.getPublicId();
81 assertEquals("documenttypepublicid01", "PUB", publicId);
DocumentTypeSystemId.java 35 * its publicId. Check the value of the systemId and pbulicId attributes.
71 String publicId;
76 publicId = docType.getPublicId();
78 assertEquals("documenttypepublicid01", "PUB", publicId);
PublicId.java 39 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
41 public final class PublicId extends DOMTestCase {
71 String publicId;
74 publicId = docType.getPublicId();
75 assertEquals("throw_Equals", "STAFF", publicId);
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
84 String publicId = "STAFF";
96 domImpl.createDocumentType(malformedName, publicId, systemId);
104 String publicId = "http://www.localhost.com/";
147 domImpl.createDocumentType(qualifiedName, publicId,
159 String publicId = "http://www.localhost.com";
169 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
176 String publicId = "http://www.example.com/"
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
NodeLocator.java 43 * @param publicId a <code>String</code> value
48 public NodeLocator(String publicId, String systemId,
51 this.m_publicId = publicId;
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java 39 * @param publicId The external subset public identifier.
54 String publicId,

Completed in 1445 milliseconds

1 2 3 4 5 6 7 8 91011>>