HomeSort by relevance Sort by last modified time
    Searched full:publicid (Results 1 - 25 of 197) sorted by null

1 2 3 4 5 6 7 8

  /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 + "]");
MockHandler.java 77 public void notationDecl(String name, String publicId, String systemId) throws SAXException {
78 logger.add("notationDecl", name, publicId, systemId);
110 public void unparsedEntityDecl(String name, String publicId, String systemId,
112 logger.add("unparsedEntityDecl", name, publicId, systemId, notationName);
139 public void startDTD(String name, String publicId, String systemId) throws SAXException {
140 logger.add("startDTD", name, 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);
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...]
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);
DOMImplementationCreateDocumentType.java 34 * The method createDocumentType with valid values for qualifiedName, publicId
81 String publicId;
94 publicId = (String) publicIds.get(indexN1005D);
98 publicId, systemId);
114 String publicId = "http://www.w3.org/DOM/Test/dom2.dtd";
137 newDocType = domImpl.createDocumentType(qualifiedName, publicId,
151 String publicId = "http://www.w3.org/DOM/Test/dom2.dtd";
174 newDocType = domImpl.createDocumentType(qualifiedName, publicId,
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
EntityImpl.java 36 private String publicID;
40 EntityImpl(DocumentImpl document, String notationName, String publicID,
44 this.publicID = publicID;
63 return publicID;
NotationImpl.java 36 private String publicID;
40 NotationImpl(DocumentImpl document, String notationName, String publicID,
56 return publicID;
DocumentTypeImpl.java 38 private String publicId;
43 String publicId, String systemId) {
69 this.publicId = publicId;
103 return publicId;
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 443 void HTMLConstructionSite::setCompatibilityModeFromDoctype(const String& name, const String& publicId, const String& systemId)
453 || publicId.startsWith("+//Silmaril//dtd html Pro v0r11 19970101//", false)
454 || publicId.startsWith("-//AdvaSoft Ltd//DTD HTML 3.0 asWedit + extensions//", false)
455 || publicId.startsWith("-//AS//DTD HTML 3.0 asWedit + extensions//", false)
456 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 1//", false)
457 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 2//", false)
458 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 1//", false)
459 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 2//", false)
460 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict//", false)
461 || publicId.startsWith("-//IETF//DTD HTML 2.0//", false
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentType.h 35 static PassRefPtrWillBeRawPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId)
37 return adoptRefWillBeNoop(new DocumentType(document, name, publicId, systemId));
41 const String& publicId() const { return m_publicId; }
45 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Scanner.java 38 @param publicid The publicid of the source
42 public void resetDocumentLocator(String publicid, String systemid);
  /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);
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);
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);
  /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...]
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
notationgetpublicid.java 64 String publicId;
71 publicId = notationNode.getPublicId();
72 assertEquals("publicId", "notation1File", publicId);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/ext/
DefaultHandler2Test.java 52 h.startDTD("name", "publicId", "systemId");
108 h.externalEntityDecl("name", "publicId", "systemId");
134 assertNull(h.resolveEntity("publicId", "systemId"));
144 assertNull(h.resolveEntity("name", "publicId", "http://some.uri",
  /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); }
  /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/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/
HandlerBaseTest.java 40 h.resolveEntity("publicID", "systemID");
47 h.notationDecl("name", "publicID", "systemID");
51 h.unparsedEntityDecl("name", "publicID", "systemID", "notationName");
  /external/chromium_org/third_party/libxml/src/include/libxml/
SAX.h 64 const xmlChar *publicId,
71 const xmlChar *publicId,
90 const xmlChar *publicId,
95 const xmlChar *publicId,
SAX2.h 62 const xmlChar *publicId,
69 const xmlChar *publicId,
88 const xmlChar *publicId,
93 const xmlChar *publicId,

Completed in 895 milliseconds

1 2 3 4 5 6 7 8