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

12 3 4 5 6 7 8 91011>>

  /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/dom/src/test/java/org/w3c/domts/level2/core/
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/test/java/tests/org/w3c/dom/
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/harmony-tests/src/test/java/org/apache/harmony/tests/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);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
  /external/python/cpython2/Lib/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, 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,
  /prebuilts/gdb/darwin-x86/lib/python2.7/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/
handler.py 214 def notationDecl(self, name, publicId, systemId):
217 def unparsedEntityDecl(self, name, publicId, systemId, ndata):
230 def resolveEntity(self, publicId, systemId):
  /external/libxml2/
testHTML.c 166 * @publicId: The public ID of the entity
178 resolveEntityDebug(void *ctx ATTRIBUTE_UNUSED, const xmlChar *publicId, const xmlChar *systemId)
184 if (publicId != NULL)
185 fprintf(stdout, "%s", (char *)publicId);
238 * @publicId: The public ID of the entity
246 const xmlChar *publicId, const xmlChar *systemId, xmlChar *content)
249 name, type, publicId, systemId, content);
290 * @publicId: The public ID of the entity
297 const xmlChar *publicId, const xmlChar *systemId)
300 (char *) name, (char *) publicId, (char *) systemId)
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/ls/
LSInput.java 44 * <li> <code>LSInput.publicId</code>
165 public void setPublicId(String publicId);
  /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...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerHandlerImpl.java 236 * @param publicId The entity's public identifier, or null.
248 public InputSource resolveEntity(String publicId, String systemId)
254 return m_entityResolver.resolveEntity(publicId, systemId);
270 * @param publicId The notation's public identifier, or null.
276 public void notationDecl(String name, String publicId, String systemId)
282 m_dtdHandler.notationDecl(name, publicId, systemId);
290 * @param publicId The entity's public identifier, or null.
298 String name, String publicId, String systemId, String notationName)
304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName);
759 * @param publicId The declared public identifier for th
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/xml/
LocalEntityResolver.java 32 public InputSource resolveEntity(final String publicId, String systemId)
  /external/libxml2/include/libxml/
SAX.h 64 const xmlChar *publicId,
71 const xmlChar *publicId,
90 const xmlChar *publicId,
95 const xmlChar *publicId,

Completed in 565 milliseconds

12 3 4 5 6 7 8 91011>>