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

1 2 3 4 5 6

  /external/webkit/Source/WebCore/html/
HTMLDocument.cpp 347 const String& publicId = docType->publicId();
349 || publicId.startsWith("+//Silmaril//dtd html Pro v0r11 19970101//", false)
350 || publicId.startsWith("-//AdvaSoft Ltd//DTD HTML 3.0 asWedit + extensions//", false)
351 || publicId.startsWith("-//AS//DTD HTML 3.0 asWedit + extensions//", false)
352 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 1//", false)
353 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 2//", false)
354 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 1//", false)
355 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 2//", false)
356 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict//", false
    [all...]
  /libcore/luni/src/test/java/tests/api/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 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,
  /external/webkit/Source/WebCore/dom/
Notation.idl 23 readonly attribute [ConvertNullStringTo=Null] DOMString publicId;
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);
Entity.h 33 String publicId() const { ASSERT_NOT_REACHED(); return String(); }
Notation.cpp 28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& systemId)
31 , m_publicId(publicId)
Notation.h 33 const String& publicId() const { return m_publicId; }
37 Notation(Document*, const String& name, const String& publicId, const String& systemId);
  /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);
  /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);

Completed in 731 milliseconds

1 2 3 4 5 6