Searched refs:doctype (Results 1 - 21 of 21) sorted by relevance

/external/webkit/WebCore/dom/
H A DDocumentType.cpp66 if (!doc->doctype())
74 if (document() && document()->doctype() == this)
H A DDOMImplementation.idl38 in [ConvertNullToNullString] DocumentType doctype)
H A DDOMImplementation.cpp224 const String& qualifiedName, DocumentType* doctype, ExceptionCode& ec)
249 // WRONG_DOCUMENT_ERR: Raised if doctype has already been used with a different document or was
253 if (doctype && doctype->document()) {
258 if (doctype)
259 doc->addChild(doctype);
308 d->write("<!doctype html><html><body></body></html>");
223 createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType* doctype, ExceptionCode& ec) argument
H A DDocument.idl31 readonly attribute DocumentType doctype;
H A DDocument.h267 DocumentType* doctype() const { return m_docType.get(); } function in class:WebCore::Document
/external/opencore/tools_v2/build/make/
H A Ddoc.mk15 perl $(SRC_ROOT)/tools_v2/build/document/bin/doc_build.bat --doctype $(doc_rule_target) --title $(doc_rule_title) --path $(doc_rule_paths) --filetype "mainpage *.h readme.txt" --exclude_pattern "*/test/* */obsolete/* */doxydir/*" -ver $(doc_rule_version)
/external/dbus/bus/
H A Dconfig-parser.h46 const char *doctype,
H A Dconfig-parser.c566 const char *doctype,
571 if (strcmp (doctype, "busconfig") != 0)
576 doctype);
565 bus_config_parser_check_doctype(BusConfigParser *parser, const char *doctype, DBusError *error) argument
/external/webkit/WebCore/inspector/front-end/
H A DinspectorSyntaxHighlight.css79 .webkit-html-doctype {
80 /* Keep this in sync with view-source.css (.webkit-html-doctype) */
/external/webkit/WebCore/html/
H A DHTMLDocument.cpp301 return newChild->hasTagName(htmlTag) || newChild->isCommentNode() || (newChild->nodeType() == DOCUMENT_TYPE_NODE && !doctype());
353 // doctype parsing implemented by David Baron in Mozilla's nsParser.cpp).
362 DocumentType* docType = doctype();
364 // No doctype found at all or the doctype is not HTML. Default to quirks mode and Html4.
366 else if (!doctype()->systemId().isEmpty() && equalIgnoringCase(docType->systemId(), "http://www.ibm.com/data/dtd/v11/ibmxhtml1-transitional.dtd"))
371 // A doctype without a public ID means use strict mode.
H A DHTMLParser.cpp323 // Ignore any doctype after the first. Ignore doctypes in fragments.
324 if (m_document->doctype() || m_isParsingFragment || m_current != m_document)
327 // Make a new doctype node and set it as our doctype.
/external/tinyxml/
H A Dxmltest.cpp865 const char* doctype = local
873 doc.Parse( doctype );
892 const char* doctype = local
895 doc.Parse( doctype );
953 const char* doctype = "<element attr='red' attr='blue' />"; local
956 doc.Parse( doctype );
964 const char* doctype = "<element att\0r='red' attr='blue' />"; local
967 doc.Parse( doctype );
971 istringstream strm( doctype );
/external/webkit/WebCore/css/
H A Dview-source.css118 .webkit-html-doctype {
119 /* Keep this in sync with inspector.css (.webkit-html-doctype) */
/external/webkit/WebKit/chromium/src/
H A DWebPageSerializerImpl.cpp156 result.append(createMarkup(param->doc->doctype()));
187 result.append(createMarkup(param->doc->doctype()));
/external/webkit/WebKit/win/Interfaces/
H A DDOMCore.idl81 - (DOMDocument *)createDocument:(NSString *)namespaceURI :(NSString *)qualifiedName :(DOMDocumentType *)doctype;
83 HRESULT createDocument([in] BSTR namespaceURI, [in] BSTR qualifiedName, [in] IDOMDocumentType* doctype, [out, retval] IDOMDocument** result);
329 - (DOMDocumentType *)doctype;
331 HRESULT doctype([out, retval] IDOMDocumentType** result);
/external/webkit/WebCore/page/
H A DFrame.cpp1636 if (DocumentType* doctype = document()->doctype())
1637 return createMarkup(doctype);
/external/webkit/WebCore/bindings/objc/
H A DPublicDOMInterfaces.h64 - (DOMDocument *)createDocument:(NSString *)namespaceURI :(NSString *)qualifiedName :(DOMDocumentType *)doctype;
68 - (DOMDocument *)createDocument:(NSString *)namespaceURI qualifiedName:(NSString *)qualifiedName doctype:(DOMDocumentType *)doctype AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER;
78 @property(readonly, retain) DOMDocumentType *doctype; variable
/external/webkit/WebCore/accessibility/gtk/
H A DAccessibilityObjectWrapperAtk.cpp1531 if (!g_ascii_strcasecmp(attribute, "DocType") && coreDocument->doctype())
1532 value = coreDocument->doctype()->name();
/external/webkit/WebKit/win/
H A DDOMCoreClasses.cpp554 HRESULT STDMETHODCALLTYPE DOMDocument::doctype( function in class:DOMDocument
H A DDOMCoreClasses.h452 virtual HRESULT STDMETHODCALLTYPE doctype(
H A DDOMHTMLClasses.h307 virtual HRESULT STDMETHODCALLTYPE doctype( function in class:DOMHTMLDocument
308 /* [retval][out] */ IDOMDocumentType **result) { return DOMDocument::doctype(result); }

Completed in 264 milliseconds