Searched refs:publicId (Results 1 - 25 of 67) sorted by relevance

123

/external/webkit/Source/WebCore/html/
H A DHTMLDocument.cpp347 const String& publicId = docType->publicId(); local
349 || publicId.startsWith("+//Silmaril//dtd html Pro v0r11 19970101//", false)
350 || publicId.startsWith("-//AdvaSoft Ltd//DTD HTML 3.0 asWedit + extensions//", false)
351 || publicId.startsWith("-//AS//DTD HTML 3.0 asWedit + extensions//", false)
352 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 1//", false)
353 || publicId.startsWith("-//IETF//DTD HTML 2.0 Level 2//", false)
354 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 1//", false)
355 || publicId.startsWith("-//IETF//DTD HTML 2.0 Strict Level 2//", false)
356 || publicId
[all...]
/external/webkit/Source/WebCore/dom/
H A DNotation.idl23 readonly attribute [ConvertNullStringTo=Null] DOMString publicId;
H A DNotation.cpp28 Notation::Notation(Document* document, const String& name, const String& publicId, const String& systemId) argument
31 , m_publicId(publicId)
H A DEntity.idl23 readonly attribute [ConvertNullStringTo=Null] DOMString publicId;
H A DNotation.h33 const String& publicId() const { return m_publicId; } function in class:WebCore::Notation
37 Notation(Document*, const String& name, const String& publicId, const String& systemId);
H A DDocumentType.h35 static PassRefPtr<DocumentType> create(Document* document, const String& name, const String& publicId, const String& systemId) argument
37 return adoptRef(new DocumentType(document, name, publicId, systemId));
44 const String& publicId() const { return m_publicId; } function in class:WebCore::DocumentType
49 DocumentType(Document*, const String& name, const String& publicId, const String& systemId);
H A DEntity.h33 String publicId() const { ASSERT_NOT_REACHED(); return String(); } function in class:WebCore::Entity
H A DDocumentType.cpp31 DocumentType::DocumentType(Document* document, const String& name, const String& publicId, const String& systemId) argument
34 , m_publicId(publicId)
H A DDocumentType.idl34 readonly attribute [ConvertNullStringTo=Null] DOMString publicId;
H A DDOMImplementation.idl35 in [ConvertUndefinedOrNullToNullString] DOMString publicId,
H A DXMLDocumentParserQt.cpp692 QStringRef publicId = m_stream.dtdPublicId(); local
695 //qDebug() << dtd << name << publicId << systemId;
696 if ((publicId == QLatin1String("-//W3C//DTD XHTML 1.0 Transitional//EN"))
697 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.1//EN"))
698 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.0 Strict//EN"))
699 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.0 Frameset//EN"))
700 || (publicId == QLatin1String("-//W3C//DTD XHTML Basic 1.0//EN"))
701 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.1 plus MathML 2.0//EN"))
702 || (publicId == QLatin1String("-//W3C//DTD XHTML 1.1 plus MathML 2.0 plus SVG 1.1//EN"))
704 || (publicId
[all...]
H A DDOMImplementation.h48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DNodeLocator.java43 * @param publicId a <code>String</code> value
48 public NodeLocator(String publicId, String systemId, argument
51 this.m_publicId = publicId;
/external/webkit/LayoutTests/dom/html/level2/core/
H A DcreateDocumentType04.js82 var publicId = "http://www.example.com/";
93 docType = domImpl.createDocumentType("",publicId,systemId);
/external/webkit/LayoutTests/dom/xhtml/level2/core/
H A DcreateDocumentType04.js82 var publicId = "http://www.example.com/";
93 docType = domImpl.createDocumentType("",publicId,systemId);
/external/webkit/LayoutTests/dom/xhtml/level3/core/
H A Dnodereplacechild40.js90 var publicId = null;
109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
/external/webkit/Source/WebCore/bindings/objc/
H A DDOMImplementationFront.cpp57 PassRefPtr<DocumentType> DOMImplementationFront::createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode& ec) argument
59 return reinterpret_cast<DOMImplementation*>(this)->createDocumentType(qualifiedName, publicId, systemId, ec);
H A DDOMImplementationFront.h48 PassRefPtr<DocumentType> createDocumentType(const String& qualifiedName, const String& publicId, const String& systemId, ExceptionCode&);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DTransformerHandlerImpl.java236 * @param publicId The entity's public identifier, or null.
248 public InputSource resolveEntity(String publicId, String systemId) argument
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) argument
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 Th
297 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
768 startDTD(String name, String publicId, String systemId) argument
1024 externalEntityDecl( String name, String publicId, String systemId) argument
[all...]
H A DTransformerIdentityImpl.java817 * @param publicId The notation public identifier, or null if not
826 public void notationDecl(String name, String publicId, String systemId) argument
830 m_resultDTDHandler.notationDecl(name, publicId, systemId);
841 * @param publicId The entity public identifier, or null if not
852 String name, String publicId, String systemId, String notationName)
857 m_resultDTDHandler.unparsedEntityDecl(name, publicId, systemId,
1210 * @param publicId The declared public identifier for the
1219 public void startDTD(String name, String publicId, String systemId) argument
1224 m_resultLexicalHandler.startDTD(name, publicId, systemId);
1410 * @param publicId Th
851 unparsedEntityDecl( String name, String publicId, String systemId, String notationName) argument
1417 externalEntityDecl(String name, String publicId, String systemId) argument
[all...]
/external/libxml2/include/libxml/
H A DSAX.h64 const xmlChar *publicId,
71 const xmlChar *publicId,
90 const xmlChar *publicId,
95 const xmlChar *publicId,
H A DSAX2.h62 const xmlChar *publicId,
69 const xmlChar *publicId,
88 const xmlChar *publicId,
93 const xmlChar *publicId,
/external/libxml2/
H A Dlegacy.c906 * @publicId: The public ID of the entity
919 resolveEntity(void *ctx, const xmlChar * publicId, argument
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
974 entityDecl(void *ctx, const xmlChar * name, int type, const xmlChar * publicId, const xmlChar * systemId, xmlChar * content) argument
1034 notationDecl(void *ctx, const xmlChar * name, const xmlChar * publicId, const xmlChar * systemId) argument
1053 unparsedEntityDecl(void *ctx, const xmlChar * name, const xmlChar * publicId, const xmlChar * systemId, const xmlChar * notationName) argument
[all...]
/external/expat/amiga/include/libraries/
H A Dexpat.h238 const XML_Char *publicId,
250 const XML_Char *publicId,
258 const XML_Char *publicId);
276 const XML_Char *publicId);
/external/expat/xmlwf/
H A Dxmlwin32url.cxx36 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);
213 externalEntityRef(const XML_Char *context, const XML_Char *systemId, const XML_Char *publicId) argument
247 externalEntityRef(void *arg, const XML_Char *context, const XML_Char *base, const XML_Char *systemId, const XML_Char *publicId) argument

Completed in 947 milliseconds

123