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

1 2

  /external/webkit/WebCore/dom/
Entity.h 33 String publicId() const { ASSERT_NOT_REACHED(); return String(); }
Notation.h 33 const String& publicId() const { return m_publicId; }
37 Notation(Document*, const String& name, const String& publicId, const String& systemId);
DocumentType.h 35 static PassRefPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId)
37 return adoptRef(new DocumentType(document, name, publicId, systemId));
44 const String& publicId() const { return m_publicId; }
49 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level2/core/
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);
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);
createDocumentType02.java 34 * The "createDocumentType(qualifiedName,publicId,systemId)" method for a
38 * Invoke method createDocumentType(qualifiedName,publicId,systemId) on
69 String publicId = "http://www.localhost.com/";
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
69 String publicId = "http://www.localhost.com";
79 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype01.java 34 * The method createDocumentType with valid values for qualifiedName, publicId and
71 String publicId;
84 publicId = (String) publicIds.get(indexN1005D);
87 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype02.java 47 * The method createDocumentType with valid values for qualifiedName, publicId and
51 * and a valid publicId and systemId. Check if the the DocumentType node was created
83 String publicId = "http://www.w3.org/DOM/Test/dom2.dtd";
106 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
domimplementationcreatedocumenttype04.java 81 String publicId = "http://www.w3.org/DOM/Test/dom2.dtd";
108 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
entitygetpublicid.java 70 String publicId;
79 publicId = entityNode.getPublicId();
80 assertEquals("publicId", "entityURI", publicId);
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);
  /dalvik/libcore/xml/src/main/java/javax/xml/transform/stream/
StreamSource.java 199 * @param publicId The public identifier as a string.
201 public void setPublicId(String publicId) {
202 this.publicId = publicId;
212 return publicId;
257 private String publicId;
  /dalvik/libcore/xml/src/main/java/org/xml/sax/
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;
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...]
  /dalvik/libcore/xml/src/test/java/tests/org/w3c/dom/
DocumentTypePublicId.java 41 * Create a new DocumentType node with the value "PUB" for its publicId.
42 * Check the value of the publicId attribute using getPublicId().
45 * @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>
86 String publicId;
92 publicId = docType.getPublicId();
93 assertEquals("documenttypepublicid01", "PUB", publicId);
DocumentTypeSystemId.java 40 * its publicId. Check the value of the systemId and pbulicId attributes.
83 String publicId;
88 publicId = docType.getPublicId();
90 assertEquals("documenttypepublicid01", "PUB", publicId);
PublicId.java 44 * @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>
47 public final class PublicId extends DOMTestCase {
83 String publicId;
86 publicId = docType.getPublicId();
87 assertEquals("throw_Equals", "STAFF", publicId);
  /dalvik/libcore/xml/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;
  /dalvik/libcore/xml/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;

Completed in 351 milliseconds

1 2