Searched refs:publicId (Results 1 - 25 of 49) sorted by relevance

12

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
H A DMockResolver.java34 public void addEntity(String publicId, String systemId, InputSource source) { argument
35 entities.put("[" + publicId + ":" + systemId + "]", source);
38 public void removeEntity(String publicId, String systemId) { argument
39 entities.remove("[" + publicId + ":" + systemId + "]");
42 public InputSource resolveEntity(String publicId, String systemId) argument
44 return entities.get("[" + publicId + ":" + systemId + "]");
/libcore/luni/src/main/java/org/xml/sax/
H A DSAXParseException.java108 * @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;
116 SAXParseException(String message, String publicId, String systemId, int lineNumber, int columnNumber) argument
148 SAXParseException(String message, String publicId, String systemId, int lineNumber, int columnNumber, Exception e) argument
166 init(String publicId, String systemId, int lineNumber, int columnNumber) argument
244 private String publicId; field in class:SAXParseException
[all...]
H A DDTDHandler.java62 * <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,
80 notationDecl(String name, String publicId, String systemId) argument
109 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
H A DInputSource.java148 * @param publicId The public identifier as a string.
153 public void setPublicId (String publicId) argument
155 this.publicId = publicId;
167 return publicId;
330 private String publicId;
329 private String publicId; field in class:InputSource
H A DEntityResolver.java45 * public InputSource resolveEntity (String publicId, String systemId)
99 * @param publicId The public identifier of the external entity
113 public abstract InputSource resolveEntity (String publicId, argument
H A DHandlerBase.java65 * @param publicId The public identifer, 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,
74 resolveEntity(String publicId, String systemId) argument
100 notationDecl(String name, String publicId, String systemId) argument
120 unparsedEntityDecl(String name, String publicId, String systemId, String notationName) argument
/libcore/luni/src/main/java/org/xml/sax/helpers/
H A DLocatorImpl.java103 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;
159 setPublicId(String publicId) argument
207 private String publicId; field in class:LocatorImpl
/libcore/luni/src/main/java/org/w3c/dom/ls/
H A DLSResourceResolver.java63 * @param publicId The public identifier of the external entity being
77 String publicId,
75 resolveResource(String type, String namespaceURI, String publicId, String systemId, String baseURI) argument
/libcore/luni/src/main/java/javax/xml/transform/stream/
H A DStreamSource.java198 * @param publicId The public identifier as a string.
200 public void setPublicId(String publicId) { argument
201 this.publicId = publicId;
211 return publicId;
256 private String publicId; field in class:StreamSource
/libcore/luni/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentTypeImpl.java38 private String publicId; field in class:DocumentTypeImpl
43 String publicId, String systemId) {
69 this.publicId = publicId;
103 return publicId;
42 DocumentTypeImpl(DocumentImpl document, String qualifiedName, String publicId, String systemId) argument
/libcore/luni/src/main/java/org/xml/sax/ext/
H A DDefaultHandler2.java54 public void startDTD (String name, String publicId, String systemId) argument
87 String publicId, String systemId)
134 * @param publicId The public identifier of the external entity being
154 public InputSource resolveEntity (String name, String publicId, argument
167 * @param publicId The public identifier of the external entity being
182 public InputSource resolveEntity (String publicId, String systemId) argument
184 { return resolveEntity (null, publicId, null, systemId); }
86 externalEntityDecl(String name, String publicId, String systemId) argument
H A DDeclHandler.java133 * @param publicId The entity's public identifier, or null if none
140 public abstract void externalEntityDecl (String name, String publicId, argument
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
H A Dentitygetpublicidnull.java69 String publicId;
76 publicId = entityNode.getPublicId();
77 assertNull("entityGetPublicIdNullAssert", publicId);
H A Dnotationgetpublicid.java64 String publicId;
71 publicId = notationNode.getPublicId();
72 assertEquals("publicId", "notation1File", publicId);
H A Dnotationgetpublicidnull.java69 String publicId;
76 publicId = notationNode.getPublicId();
77 assertNull("publicId", publicId);
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
H A Ddocumenttypepublicid01.java36 * 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);
H A Ddocumenttypesystemid01.java37 * its publicId. Check the value of the systemId and pbulicId attributes.
67 String publicId;
72 publicId = docType.getPublicId();
74 assertEquals("documenttypepublicid01", "PUB", publicId);
H A DpublicId01.java42 * @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);
H A DcreateDocumentType01.java34 * 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);
H A DcreateDocumentType04.java60 String publicId = "http://www.example.com/";
71 docType = domImpl.createDocumentType("", publicId, systemId);
/libcore/luni/src/test/java/tests/org/w3c/dom/
H A DDocumentTypePublicId.java36 * 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);
H A DDocumentTypeSystemId.java35 * its publicId. Check the value of the systemId and pbulicId attributes.
71 String publicId;
76 publicId = docType.getPublicId();
78 assertEquals("documenttypepublicid01", "PUB", publicId);
H A DPublicId.java39 * @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>
71 String publicId;
74 publicId = docType.getPublicId();
75 assertEquals("throw_Equals", "STAFF", publicId);
H A DCreateDocumentType.java35 * 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
[all...]
/libcore/luni/src/main/java/org/w3c/dom/
H A DDOMImplementation.java39 * @param publicId The external subset public identifier.
54 String publicId,
53 createDocumentType(String qualifiedName, String publicId, String systemId) argument

Completed in 907 milliseconds

12