/libcore/luni/src/main/java/org/xml/sax/ |
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,
|
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,
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/sax/ |
saxutils.py | 258 def notationDecl(self, name, publicId, systemId): 259 self._dtd_handler.notationDecl(name, publicId, systemId) 261 def unparsedEntityDecl(self, name, publicId, systemId, ndata): 262 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata) 266 def resolveEntity(self, publicId, systemId): 267 return self._ent_handler.resolveEntity(publicId, systemId)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/sax/ |
saxutils.py | 258 def notationDecl(self, name, publicId, systemId): 259 self._dtd_handler.notationDecl(name, publicId, systemId) 261 def unparsedEntityDecl(self, name, publicId, systemId, ndata): 262 self._dtd_handler.unparsedEntityDecl(name, publicId, systemId, ndata) 266 def resolveEntity(self, publicId, systemId): 267 return self._ent_handler.resolveEntity(publicId, systemId)
|
/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/chromium_org/third_party/libxml/src/ |
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...] |
legacy.c | 906 * @publicId: The public ID of the entity 919 resolveEntity(void *ctx, const xmlChar * publicId, 923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId)); 966 * @publicId: The public ID of the entity 975 const xmlChar * publicId, const xmlChar * systemId, 979 xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content); 1027 * @publicId: The public ID of the entity 1035 const xmlChar * publicId, const xmlChar * systemId) 1038 xmlSAX2NotationDecl(ctx, name, publicId, systemId); 1045 * @publicId: The public ID of the entit [all...] |
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
createDocumentType04.java | 60 String publicId = "http://www.example.com/"; 71 docType = domImpl.createDocumentType("", 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/apache/harmony/xml/ |
ExpatReader.java | 300 private void parse(Reader in, String publicId, String systemId) 306 publicId, 312 private void parse(InputStream in, String charsetName, String publicId, String systemId) 315 new ExpatParser(charsetName, this, processNamespaces, publicId, systemId);
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DocumentTypeInternalSubset.java | 12 * Create a new DocumentType node with null values for publicId and systemId.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/ |
expatbuilder.py | 240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId, 243 doctypeName, publicId, systemId) 310 base, systemId, publicId, notationName): 316 node = self.document._create_entity(entityName, publicId, 327 def notation_decl_handler(self, notationName, base, systemId, publicId): 328 node = self.document._create_notation(notationName, publicId, systemId) 347 def external_entity_ref_handler(self, context, base, systemId, publicId): 637 if doctype.publicId: 639 % (doctype.publicId, doctype.systemId)) 670 if notation.publicId [all...] |
minidom.py | [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/ |
expatbuilder.py | 240 def start_doctype_decl_handler(self, doctypeName, systemId, publicId, 243 doctypeName, publicId, systemId) 310 base, systemId, publicId, notationName): 316 node = self.document._create_entity(entityName, publicId, 327 def notation_decl_handler(self, notationName, base, systemId, publicId): 328 node = self.document._create_notation(notationName, publicId, systemId) 347 def external_entity_ref_handler(self, context, base, systemId, publicId): 637 if doctype.publicId: 639 % (doctype.publicId, doctype.systemId)) 670 if notation.publicId [all...] |
minidom.py | [all...] |
/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,
|
/external/libxml2/ |
legacy.c | 906 * @publicId: The public ID of the entity 919 resolveEntity(void *ctx, const xmlChar * publicId, 923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId)); 966 * @publicId: The public ID of the entity 975 const xmlChar * publicId, const xmlChar * systemId, 979 xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content); 1027 * @publicId: The public ID of the entity 1035 const xmlChar * publicId, const xmlChar * systemId) 1038 xmlSAX2NotationDecl(ctx, name, publicId, systemId); 1045 * @publicId: The public ID of the entit [all...] |
/libcore/luni/src/test/java/libcore/xml/ |
SaxTest.java | 229 @Override public InputSource resolveEntity(String publicId, String systemId) { 232 @Override public void notationDecl(String name, String publicId, String systemId) { 236 String name, String publicId, String systemId, String notationName) {
|
/cts/tests/tests/app/src/android/app/cts/ |
DownloadManagerTest.java | 172 long publicId = mDownloadManager.enqueue(requestPublic); 177 receiver.waitForDownloadComplete(SHORT_TIMEOUT, uriId, extFileId, publicId); 181 assertSuccessfulDownload(publicId, publicLocation); 185 assertRemoveDownload(publicId, allDownloads - 3);
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMImplementation.h | 59 PassRefPtrWillBeRawPtr<DocumentType> createDocumentType(const AtomicString& qualifiedName, const String& publicId, const String& systemId, ExceptionState&);
|
/libcore/dom/src/test/java/org/w3c/domts/ |
JTidyDOMImplementation.java | 59 * @param publicId The external subset public identifier. 77 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/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,
|
/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
Parser.java | 484 String publicid = s.getPublicId(); local 487 if (i == null) i = getInputStream(publicid, systemid); 505 // Get an InputStream based on a publicid and a systemid 506 private InputStream getInputStream(String publicid, String systemid) throws IOException, SAXException { 835 String publicid = null; local 846 publicid = v[3]; 856 publicid = trimquotes(publicid); 859 publicid = cleanPublicid(publicid); [all...] |