/external/webkit/Source/WebCore/html/ |
D | HTMLDocument.cpp | 347 const String& publicId = docType->publicId(); in setCompatibilityModeFromDoctype() local 349 || publicId.startsWith("+//Silmaril//dtd html Pro v0r11 19970101//", false) in setCompatibilityModeFromDoctype() 350 || publicId.startsWith("-//AdvaSoft Ltd//DTD HTML 3.0 asWedit + extensions//", false) in setCompatibilityModeFromDoctype() 351 || publicId.startsWith("-//AS//DTD HTML 3.0 asWedit + extensions//", false) in setCompatibilityModeFromDoctype() 352 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 1//", false) in setCompatibilityModeFromDoctype() 353 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 2//", false) in setCompatibilityModeFromDoctype() 354 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 1//", false) in setCompatibilityModeFromDoctype() 355 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 2//", false) in setCompatibilityModeFromDoctype() 356 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict//", false) in setCompatibilityModeFromDoctype() 357 || publicId.startsWith("-//IETF//DTD HTML 2.0//", false) in setCompatibilityModeFromDoctype() [all …]
|
/external/webkit/Source/WebCore/dom/ |
D | XMLDocumentParserQt.cpp | 692 QStringRef publicId = m_stream.dtdPublicId(); in parseDtd() local 696 if ((publicId == QLatin1String("-//W3C//DTD XHTML 1.0 Transitional//EN")) in parseDtd() 697 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.1//EN")) in parseDtd() 698 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.0 Strict//EN")) in parseDtd() 699 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.0 Frameset//EN")) in parseDtd() 700 || (publicId == QLatin1String("-//W3C//DTD XHTML Basic 1.0//EN")) in parseDtd() 701 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN")) in parseDtd() 702 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN")) in parseDtd() 704 || (publicId == QLatin1String("-//WAPFORUM//DTD XHTML Mobile 1.0//EN")) in parseDtd() 709 else if ((publicId == QLatin1String("-//WAPFORUM//DTD XHTML Mobile 1.1//EN")) in parseDtd() [all …]
|
D | DocumentType.h | 35 …umentType> create(Document* document, const String& name, const String& publicId, const String& sy… in create() argument 37 return adoptRef(new DocumentType(document, name, publicId, systemId)); in create() 44 const String& publicId() const { return m_publicId; } in publicId() function 49 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
|
D | Notation.cpp | 28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& sy… in Notation() argument 31 , m_publicId(publicId) in Notation()
|
D | Notation.h | 33 const String& publicId() const { return m_publicId; } in publicId() function 37 Notation(Document*, const String& name, const String& publicId, const String& systemId);
|
D | DocumentType.cpp | 31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const St… in DocumentType() argument 34 , m_publicId(publicId) in DocumentType()
|
D | Entity.h | 33 String publicId() const { ASSERT_NOT_REACHED(); return String(); } in publicId() function
|
/external/apache-xml/src/main/java/org/apache/xalan/transformer/ |
D | TransformerHandlerImpl.java | 248 public InputSource resolveEntity(String publicId, String systemId) in resolveEntity() argument 254 return m_entityResolver.resolveEntity(publicId, systemId); in resolveEntity() 276 public void notationDecl(String name, String publicId, String systemId) in notationDecl() argument 282 m_dtdHandler.notationDecl(name, publicId, systemId); in notationDecl() 298 String name, String publicId, String systemId, String notationName) in unparsedEntityDecl() argument 304 m_dtdHandler.unparsedEntityDecl(name, publicId, systemId, notationName); in unparsedEntityDecl() 768 public void startDTD(String name, String publicId, String systemId) in startDTD() argument 774 + publicId + ", " + systemId); in startDTD() 778 m_lexicalHandler.startDTD(name, publicId, systemId); in startDTD() 1025 String name, String publicId, String systemId) throws SAXException in externalEntityDecl() argument [all …]
|
D | TransformerIdentityImpl.java | 826 public void notationDecl(String name, String publicId, String systemId) in notationDecl() argument 830 m_resultDTDHandler.notationDecl(name, publicId, systemId); in notationDecl() 852 String name, String publicId, String systemId, String notationName) in unparsedEntityDecl() argument 857 m_resultDTDHandler.unparsedEntityDecl(name, publicId, systemId, in unparsedEntityDecl() 1219 public void startDTD(String name, String publicId, String systemId) in startDTD() argument 1224 m_resultLexicalHandler.startDTD(name, publicId, systemId); in startDTD() 1417 public void externalEntityDecl (String name, String publicId, in externalEntityDecl() argument 1422 m_resultDeclHandler.externalEntityDecl(name, publicId, systemId); in externalEntityDecl()
|
/external/libxml2/include/libxml/ |
D | SAX2.h | 62 const xmlChar *publicId, 69 const xmlChar *publicId, 88 const xmlChar *publicId, 93 const xmlChar *publicId,
|
D | SAX.h | 64 const xmlChar *publicId, 71 const xmlChar *publicId, 90 const xmlChar *publicId, 95 const xmlChar *publicId,
|
/external/webkit/LayoutTests/dom/xhtml/level2/core/ |
D | createDocumentType04.js | 82 var publicId = "http://www.example.com/"; 93 docType = domImpl.createDocumentType("",publicId,systemId);
|
/external/webkit/LayoutTests/dom/html/level2/core/ |
D | createDocumentType04.js | 82 var publicId = "http://www.example.com/"; 93 docType = domImpl.createDocumentType("",publicId,systemId);
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | NodeLocator.java | 48 public NodeLocator(String publicId, String systemId, in NodeLocator() argument 51 this.m_publicId = publicId; in NodeLocator()
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
D | nodereplacechild40.js | 90 var publicId = null; 109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
|
/external/webkit/Source/WebCore/bindings/objc/ |
D | DOMImplementationFront.cpp | 57 …ionFront::createDocumentType(const String& qualifiedName, const String& publicId, const String& sy… in createDocumentType() argument 59 …return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, sys… in createDocumentType()
|
/external/libxml2/ |
D | legacy.c | 919 resolveEntity(void *ctx, const xmlChar * publicId, in resolveEntity() argument 923 return (xmlSAX2ResolveEntity(ctx, publicId, systemId)); in resolveEntity() 975 const xmlChar * publicId, const xmlChar * systemId, in entityDecl() argument 979 xmlSAX2EntityDecl(ctx, name, type, publicId, systemId, content); in entityDecl() 1035 const xmlChar * publicId, const xmlChar * systemId) in notationDecl() argument 1038 xmlSAX2NotationDecl(ctx, name, publicId, systemId); in notationDecl() 1054 const xmlChar * publicId, const xmlChar * systemId, in unparsedEntityDecl() argument 1058 xmlSAX2UnparsedEntityDecl(ctx, name, publicId, systemId, in unparsedEntityDecl()
|
/external/apache-xml/src/main/java/org/apache/xalan/processor/ |
D | XSLTElementProcessor.java | 92 StylesheetHandler handler, String publicId, String systemId) in resolveEntity() argument 110 String publicId, String systemId) in notationDecl() argument 129 String publicId, String systemId, in unparsedEntityDecl() argument
|
D | StylesheetHandler.java | 307 public InputSource resolveEntity(String publicId, String systemId) in resolveEntity() argument 310 return getCurrentProcessor().resolveEntity(this, publicId, systemId); in resolveEntity() 330 public void notationDecl(String name, String publicId, String systemId) in notationDecl() argument 332 getCurrentProcessor().notationDecl(this, name, publicId, systemId); in notationDecl() 345 public void unparsedEntityDecl(String name, String publicId, in unparsedEntityDecl() argument 348 getCurrentProcessor().unparsedEntityDecl(this, name, publicId, systemId, in unparsedEntityDecl()
|
/external/jmonkeyengine/engine/src/xml/com/jme3/export/xml/ |
D | DOMSerializer.java | 196 String publicId = docType.getPublicId(); in writeDocumentType() local 201 if (publicId != null) { in writeDocumentType() 202 writer.append(" PUBLIC '").append(publicId).append("' "); in writeDocumentType()
|
/external/expat/amiga/include/libraries/ |
D | 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/ |
D | xmlwin32url.cxx | 36 const XML_Char *systemId, const XML_Char *publicId); 215 const XML_Char *publicId) in externalEntityRef() argument 251 const XML_Char *publicId) in externalEntityRef() argument 253 return ((Callback *)arg)->externalEntityRef(context, systemId, publicId); in externalEntityRef()
|
D | xmlwf.c | 463 const XML_Char *publicId) in metaNotationDecl() argument 468 if (publicId) in metaNotationDecl() 469 ftprintf(fp, T(" public=\"%s\""), publicId); in metaNotationDecl() 488 const XML_Char *publicId, in metaEntityDecl() argument 503 if (publicId) in metaEntityDecl() 504 ftprintf(fp, T(" public=\"%s\""), publicId); in metaEntityDecl() 514 if (publicId) in metaEntityDecl() 515 ftprintf(fp, T(" public=\"%s\""), publicId); in metaEntityDecl()
|
D | xmlfile.c | 135 const XML_Char *publicId) in externalEntityRefFilemap() argument 203 const XML_Char *publicId) in externalEntityRefStream() argument
|
/external/expat/lib/ |
D | expat.h | 337 const XML_Char *publicId, 358 const XML_Char *publicId, 370 const XML_Char *publicId); 437 const XML_Char *publicId);
|