Home
last modified time | relevance | path

Searched refs:publicId (Results 1 – 25 of 61) sorted by relevance

123

/external/webkit/Source/WebCore/html/
DHTMLDocument.cpp347 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/
DXMLDocumentParserQt.cpp692 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 …]
DDocumentType.h35 …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);
DNotation.cpp28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& sy… in Notation() argument
31 , m_publicId(publicId) in Notation()
DNotation.h33 const String& publicId() const { return m_publicId; } in publicId() function
37 Notation(Document*, const String& name, const String& publicId, const String& systemId);
DDocumentType.cpp31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const St… in DocumentType() argument
34 , m_publicId(publicId) in DocumentType()
DEntity.h33 String publicId() const { ASSERT_NOT_REACHED(); return String(); } in publicId() function
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DTransformerHandlerImpl.java248 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 …]
DTransformerIdentityImpl.java826 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/
DSAX2.h62 const xmlChar *publicId,
69 const xmlChar *publicId,
88 const xmlChar *publicId,
93 const xmlChar *publicId,
DSAX.h64 const xmlChar *publicId,
71 const xmlChar *publicId,
90 const xmlChar *publicId,
95 const xmlChar *publicId,
/external/webkit/LayoutTests/dom/xhtml/level2/core/
DcreateDocumentType04.js82 var publicId = "http://www.example.com/";
93 docType = domImpl.createDocumentType("",publicId,systemId);
/external/webkit/LayoutTests/dom/html/level2/core/
DcreateDocumentType04.js82 var publicId = "http://www.example.com/";
93 docType = domImpl.createDocumentType("",publicId,systemId);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DNodeLocator.java48 public NodeLocator(String publicId, String systemId, in NodeLocator() argument
51 this.m_publicId = publicId; in NodeLocator()
/external/webkit/LayoutTests/dom/xhtml/level3/core/
Dnodereplacechild40.js90 var publicId = null;
109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
/external/webkit/Source/WebCore/bindings/objc/
DDOMImplementationFront.cpp57 …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/
Dlegacy.c919 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/
DXSLTElementProcessor.java92 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
DStylesheetHandler.java307 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/
DDOMSerializer.java196 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/
Dexpat.h238 const XML_Char *publicId,
250 const XML_Char *publicId,
258 const XML_Char *publicId);
276 const XML_Char *publicId);
/external/expat/xmlwf/
Dxmlwin32url.cxx36 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()
Dxmlwf.c463 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()
Dxmlfile.c135 const XML_Char *publicId) in externalEntityRefFilemap() argument
203 const XML_Char *publicId) in externalEntityRefStream() argument
/external/expat/lib/
Dexpat.h337 const XML_Char *publicId,
358 const XML_Char *publicId,
370 const XML_Char *publicId);
437 const XML_Char *publicId);

123