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

12 3 4 5 6

  /libcore/luni/src/test/java/tests/org/w3c/dom/
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...]
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,
  /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;
  /external/webkit/Source/WebCore/dom/
Entity.idl 23 readonly attribute [ConvertNullStringTo=Null] DOMString publicId;
DocumentType.cpp 31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId)
34 , m_publicId(publicId)
DocumentType.idl 34 readonly attribute [ConvertNullStringTo=Null] DOMString publicId;
DOMImplementation.idl 35 in [ConvertUndefinedOrNullToNullString] DOMString publicId,
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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);
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);
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);
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);
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java 39 * @param publicId The external subset public identifier.
54 String publicId,
  /libcore/luni/src/main/java/org/xml/sax/ext/
DeclHandler.java 133 * @param publicId The entity's public identifier, or null if none
140 public abstract void externalEntityDecl (String name, String publicId,
LexicalHandler.java 74 * @param publicId The declared public identifier for the
85 public abstract void startDTD (String name, String publicId,
EntityResolver2.java 167 * @param publicId The public identifier of the external entity being
192 String publicId,
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
entitygetpublicid.java 70 String publicId;
79 publicId = entityNode.getPublicId();
80 assertEquals("publicId", "entityURI", publicId);
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
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/main/java/org/xml/sax/helpers/
DefaultHandler.java 77 * @param publicId The public identifer, or null if none is
89 public InputSource resolveEntity (String publicId, String systemId)
111 * @param publicId The notation public identifier, or null if not
118 public void notationDecl (String name, String publicId, String systemId)
133 * @param publicId The entity public identifier, or null if not
141 public void unparsedEntityDecl (String name, String publicId,
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSInput.java 44 * <li> <code>LSInput.publicId</code>
165 public void setPublicId(String publicId);
  /external/webkit/Source/WebCore/bindings/objc/
DOMImplementationFront.cpp 57 PassRefPtr<DocumentType> DOMImplementationFront::createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode& ec)
59 return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, systemId, ec);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 48 String publicId, String systemId) throws DOMException {
49 return new DocumentTypeImpl(null, qualifiedName, publicId, systemId);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatParser.java 57 private final String publicId;
80 boolean processNamespaces, String publicId, String systemId) {
81 this.publicId = publicId;
104 String publicId, String systemId) {
109 this.publicId = publicId;
203 /*package*/ void startDtd(String name, String publicId, String systemId)
207 lexicalHandler.startDTD(name, publicId, systemId);
226 /*package*/ void notationDecl(String name, String publicId, String systemId) throws SAXException
    [all...]

Completed in 887 milliseconds

12 3 4 5 6