/external/tagsoup/src/org/ccil/cowan/tagsoup/ |
PYXWriter.java | 204 public void startDTD(String name, String publicId, String systemId) throws SAXException { }
|
XMLWriter.java | [all...] |
/libcore/luni/src/main/java/org/w3c/dom/ls/ |
DOMImplementationLS.java | 106 * <code>LSInput.publicId</code>, <code>LSInput.baseURI</code>, and
|
LSInput.java | 44 * <li> <code>LSInput.publicId</code> 165 public void setPublicId(String publicId);
|
/libcore/luni/src/test/java/libcore/xml/ |
SimpleParserTest.java | 212 public InputSource resolveEntity(String publicId, String systemId)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
test_sax.py | 497 def notationDecl(self, name, publicId, systemId): 498 self._notations.append((name, publicId, systemId)) 500 def unparsedEntityDecl(self, name, publicId, systemId, ndata): 501 self._entities.append((name, publicId, systemId, ndata)) 523 def resolveEntity(self, publicId, systemId):
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
test_sax.py | 497 def notationDecl(self, name, publicId, systemId): 498 self._notations.append((name, publicId, systemId)) 500 def unparsedEntityDecl(self, name, publicId, systemId, ndata): 501 self._entities.append((name, publicId, systemId, ndata)) 523 def resolveEntity(self, publicId, systemId):
|
/external/chromium_org/third_party/WebKit/Source/core/dom/ |
DOMImplementation.cpp | 182 const String& publicId, const String& systemId, ExceptionState& exceptionState) 188 return DocumentType::create(&m_document, qualifiedName, publicId, systemId);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
MarkupAccumulator.cpp | 361 if (!n->publicId().isEmpty()) { 363 result.append(n->publicId());
|
/external/chromium_org/third_party/libxml/src/ |
xmlcatalog.c | 290 printf("\tpublic PublicID: make a PUBLIC identifier lookup\n"); 292 printf("\tresolve PublicID SystemID: do a full resolver lookup\n");
|
xmlsave.c | 44 * @publicID: the public identifier 51 xmlIsXHTML(const xmlChar *systemID, const xmlChar *publicID) { 52 if ((systemID == NULL) && (publicID == NULL)) 54 if (publicID != NULL) { 55 if (xmlStrEqual(publicID, XHTML_STRICT_PUBLIC_ID)) return(1); 56 if (xmlStrEqual(publicID, XHTML_FRAME_PUBLIC_ID)) return(1); 57 if (xmlStrEqual(publicID, XHTML_TRANS_PUBLIC_ID)) return(1); [all...] |
/external/libxml2/ |
xmlcatalog.c | 290 printf("\tpublic PublicID: make a PUBLIC identifier lookup\n"); 292 printf("\tresolve PublicID SystemID: do a full resolver lookup\n");
|
xmlsave.c | 44 * @publicID: the public identifier 51 xmlIsXHTML(const xmlChar *systemID, const xmlChar *publicID) { 52 if ((systemID == NULL) && (publicID == NULL)) 54 if (publicID != NULL) { 55 if (xmlStrEqual(publicID, XHTML_STRICT_PUBLIC_ID)) return(1); 56 if (xmlStrEqual(publicID, XHTML_FRAME_PUBLIC_ID)) return(1); 57 if (xmlStrEqual(publicID, XHTML_TRANS_PUBLIC_ID)) return(1); [all...] |
/libcore/luni/src/main/java/org/apache/harmony/xml/parsers/ |
DocumentBuilderImpl.java | 205 String publicId = parser.getPublicId(); 207 document.appendChild(new DocumentTypeImpl(document, name, publicId, systemId));
|
/external/apache-xml/src/main/java/org/apache/xml/serializer/ |
ToUnknownStream.java | 748 String publicId, 756 m_handler.externalEntityDecl(name, publicId, systemId); 944 public void startDTD(String name, String publicId, String systemId) 947 m_handler.startDTD(name, publicId, systemId); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
HTMLConstructionSite.h | 212 void setCompatibilityModeFromDoctype(const String& name, const String& publicId, const String& systemId);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/ |
SAX2DTM.java | 162 * publicId, systemID, notationName, and name. [all...] |
/external/expat/lib/ |
xmlparse.c | 198 const XML_Char *publicId; [all...] |
/external/expat/tests/ |
runtests.c | 111 const XML_Char *publicId, 120 const XML_Char *publicId) 776 const XML_Char *publicId) 856 const XML_Char *publicId) [all...] |
/cts/tests/tests/util/src/android/util/cts/ |
XmlEncodingTest.java | 54 private static final String STR_SET_DOCUMENT_LOCATOR = "setDocumentLocator:Locator[publicId: "
|
/external/chromium_org/third_party/libxml/src/include/libxml/ |
valid.h | 157 const xmlChar *PublicID,
|
tree.h | 157 const xmlChar *PublicID; /* Public identifier, if any */ [all...] |
/external/libxml2/include/libxml/ |
valid.h | 157 const xmlChar *PublicID,
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
IncrementalSAXSource_Filter.java | 387 public void startDTD(java.lang.String name, java.lang.String publicId, 392 clientLexicalHandler. startDTD(name, publicId, systemId);
|
/external/apache-xml/src/main/java/org/apache/xml/utils/ |
DOMBuilder.java | 702 * @param publicId The declared public identifier for the 709 public void startDTD(String name, String publicId, String systemId)
|