Searched defs:doctype (Results 1 - 16 of 16) sorted by relevance

/external/webkit/LayoutTests/fast/dom/Node/script-tests/
H A Dinitial-values.js90 var doctype = document.implementation.createDocumentType("svg", "-//W3C//DTD SVG 1.1//EN", "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"); variable
91 shouldBe("doctype.nodeName", "'svg'");
92 shouldBe("doctype.name", "'svg'");
93 shouldBe("doctype.localName", "null");
94 shouldBe("doctype.namespaceURI", "null");
95 shouldBe("doctype.prefix", "null");
96 shouldBe("doctype.nodeValue", "null");
97 shouldBe("doctype.attributes", "null");
/external/chromium/webkit/glue/
H A Dwebaccessibility.cc377 const WebKit::WebDocumentType& doctype = document.doctype(); local
378 if (!doctype.isNull())
379 attributes[ATTR_DOC_DOCTYPE] = doctype.name();
/external/webkit/Source/WebKit/chromium/src/
H A DWebDocument.cpp129 WebDocumentType WebDocument::doctype() const function in class:WebKit::WebDocument
131 return WebDocumentType(constUnwrap<Document>()->doctype());
/external/apache-xml/src/main/java/org/apache/xml/serializer/
H A DXSLOutputAttributes.java39 * doctype-public
40 * doctype-system
127 /** Set the value coming from the xsl:output doctype-public and doctype-system stylesheet properties
135 /** Set the value coming from the xsl:output doctype-public stylesheet attribute.
136 * @param doctype the public identifier to be used in the DOCTYPE
139 public void setDoctypePublic(String doctype); argument
140 /** Set the value coming from the xsl:output doctype-system stylesheet attribute.
141 * @param doctype the system identifier to be used in the DOCTYPE
144 public void setDoctypeSystem(String doctype); argument
[all...]
H A DToUnknownStream.java634 * Set the doctype in the underlying XML handler. Remember that this method
635 * was called, just in case we need to transfer this doctype to an HTML handler
636 * @param doctype the public doctype to set
639 public void setDoctypePublic(String doctype) argument
641 m_handler.setDoctypePublic(doctype);
646 * Set the doctype in the underlying XML handler. Remember that this method
647 * was called, just in case we need to transfer this doctype to an HTML handler
648 * @param doctype the system doctype t
651 setDoctypeSystem(String doctype) argument
[all...]
/external/dbus/bus/
H A Dconfig-parser-trivial.c136 const char *doctype,
141 if (strcmp (doctype, "busconfig") != 0)
146 doctype);
135 bus_config_parser_check_doctype(BusConfigParser *parser, const char *doctype, DBusError *error) argument
H A Dconfig-parser.c531 const char *doctype,
536 if (strcmp (doctype, "busconfig") != 0)
541 doctype);
530 bus_config_parser_check_doctype(BusConfigParser *parser, const char *doctype, DBusError *error) argument
/external/webkit/Source/WebCore/dom/
H A DDOMImplementation.cpp231 const String& qualifiedName, DocumentType* doctype, ExceptionCode& ec)
262 // WRONG_DOCUMENT_ERR: Raised if doctype has already been used with a different document or was
267 if (doctype && doctype->document()) {
273 if (doctype)
274 doc->parserAddChild(doctype);
314 d->write("<!doctype html><html><body></body></html>");
230 createDocument(const String& namespaceURI, const String& qualifiedName, DocumentType* doctype, ExceptionCode& ec) argument
H A DDocument.h306 DocumentType* doctype() const { return m_docType.get(); } function in class:WebCore::Document
/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/Source/WebKit/win/
H A DDOMCoreClasses.cpp594 HRESULT STDMETHODCALLTYPE DOMDocument::doctype( function in class:DOMDocument
H A DDOMHTMLClasses.h305 virtual HRESULT STDMETHODCALLTYPE doctype( function in class:DOMHTMLDocument
306 /* [retval][out] */ IDOMDocumentType **result) { return DOMDocument::doctype(result); }
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMNodeProxy.java1404 public Document createDocument(String namespaceURI,String qualfiedName,DocumentType doctype) argument
/external/libxslt/libxslt/
H A Dtransform.c3411 "doctype-system", NULL);
3419 "doctype-public", NULL);
3593 const xmlChar *doctype = NULL; local
3596 doctype = xmlDictQLookup(ctxt->dict, root->ns->prefix, root->name);
3597 if (doctype == NULL)
3598 doctype = root->name;
3620 res->intSubset = xmlCreateIntSubset(res, doctype,
3629 xmlCreateIntSubset(res, doctype,
3641 res->intSubset = xmlCreateIntSubset(res, doctype,
6101 const xmlChar *doctype local
[all...]
/external/webkit/Source/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/libvpx/nestegg/src/
H A Dnestegg.c171 struct ebml_type doctype; member in struct:ebml
337 E_FIELD(ID_DOCTYPE, TYPE_STRING, struct ebml, doctype),
1416 char * doctype; local
1461 if (ne_get_string(ctx->ebml.doctype, &doctype) != 0)
1462 doctype = "matroska";
1463 if (strcmp(doctype, "webm") != 0) {

Completed in 406 milliseconds