/libcore/luni/src/main/java/org/xml/sax/helpers/ |
XMLFilterImpl.java | 366 * @param publicId The entity's public identifier, or null. 375 public InputSource resolveEntity (String publicId, String systemId) 379 return entityResolver.resolveEntity(publicId, systemId); 397 * @param publicId The notation's public identifier, or null. 402 public void notationDecl (String name, String publicId, String systemId) 406 dtdHandler.notationDecl(name, publicId, systemId); 415 * @param publicId The entity's public identifier, or null. 421 public void unparsedEntityDecl (String name, String publicId, 426 dtdHandler.unparsedEntityDecl(name, publicId, systemId,
|
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/test/java/tests/api/javax/xml/parsers/ |
SAXParserTestSupport.java | 267 public void notationDecl(String name, String publicId, 270 publicId + ParsingSupport.SEPARATOR_STRING + 282 public InputSource resolveEntity(String publicId, String systemId) { 283 // data_resolveEntity.append(publicId + 330 public void unparsedEntityDecl(String name, String publicId, 333 // + ParsingSupport.SEPARATOR_STRING + publicId 438 public void notationDecl(String name, String publicId, 450 public InputSource resolveEntity(String publicId, String systemId) { 482 public void unparsedEntityDecl(String name, String publicId,
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
XSLTElementProcessor.java | 84 * @param publicId The public identifer, or null if none is 92 StylesheetHandler handler, String publicId, String systemId) 104 * @param publicId The notation public identifier, or null if not 110 String publicId, String systemId) 122 * @param publicId The entity public identifier, or null if not 129 String publicId, String systemId,
|
/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/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,
|
/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/webkit/LayoutTests/dom/xhtml/level3/core/ |
nodereplacechild40.js | 90 var publicId = null; 109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
|
/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);
|
/external/expat/amiga/include/libraries/ |
expat.h | 238 const XML_Char *publicId, 250 const XML_Char *publicId, 258 const XML_Char *publicId); 276 const XML_Char *publicId);
|
/external/expat/xmlwf/ |
xmlwin32url.cxx | 36 const XML_Char *systemId, const XML_Char *publicId); 215 const XML_Char *publicId) 251 const XML_Char *publicId) 253 return ((Callback *)arg)->externalEntityRef(context, systemId, publicId);
|
xmlfile.c | 135 const XML_Char *publicId) 203 const XML_Char *publicId)
|
xmlwf.c | 463 const XML_Char *publicId) 468 if (publicId) 469 ftprintf(fp, T(" public=\"%s\""), publicId); 488 const XML_Char *publicId, 503 if (publicId) 504 ftprintf(fp, T(" public=\"%s\""), publicId); 514 if (publicId) 515 ftprintf(fp, T(" public=\"%s\""), publicId);
|
/external/webkit/Source/WebCore/bindings/objc/ |
DOMImplementationFront.h | 48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
|
/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 encoding, String publicId, 318 publicId,
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DocumentTypeInternalSubset.java | 12 * Create a new DocumentType node with null values for publicId and systemId.
|
/cts/tests/tests/app/src/android/app/cts/ |
DownloadManagerTest.java | 166 long publicId = mDownloadManager.enqueue(requestPublic); 175 assertSuccessfulDownload(publicId, publicLocation); 179 assertRemoveDownload(publicId, allDownloads - 3);
|
/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 | 231 @Override public InputSource resolveEntity(String publicId, String systemId) { 234 @Override public void notationDecl(String name, String publicId, String systemId) { 238 String name, String publicId, String systemId, String notationName) {
|
/external/webkit/Source/WebCore/dom/ |
DOMImplementation.h | 48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
|
/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,
|