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

12

/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/
H A Dasciidoc.conf36 ifdef::doctype-manpage[]
38 endif::doctype-manpage[]
40 ifdef::doctype-manpage[]
42 endif::doctype-manpage[]
48 ifdef::doctype-manpage[]
65 endif::doctype-manpage[]
69 ifdef::doctype-manpage[]
86 endif::doctype-manpage[]
/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/chromium_org/third_party/WebKit/Source/core/dom/
H A DDOMImplementation.idl38 [Default=Undefined] optional DocumentType doctype);
H A DDOMImplementation.cpp203 const AtomicString& qualifiedName, DocumentType* doctype, ExceptionState& exceptionState)
225 if (doctype)
226 doc->appendChild(doctype);
329 d->write("<!doctype html><html><head></head><body></body></html>");
202 createDocument(const AtomicString& namespaceURI, const AtomicString& qualifiedName, DocumentType* doctype, ExceptionState& exceptionState) argument
H A DDocument.idl30 readonly attribute DocumentType doctype;
H A DDocument.cpp976 DocumentType* doctype = toDocumentType(importedNode); local
977 return DocumentType::create(this, doctype->name(), doctype->publicId(), doctype->systemId());
/external/chromium_org/tools/grit/grit/format/policy_templates/writers/
H A Dplist_writer.py136 doctype = dom_impl.createDocumentType(
140 return dom_impl.createDocument(None, 'plist', doctype)
/external/chromium_org/third_party/WebKit/public/web/
H A DWebDocument.h110 BLINK_EXPORT WebDocumentType doctype() const;
/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/chromium_org/third_party/WebKit/Source/core/css/
H A Dview-source.css125 .html-doctype {
126 /* Keep this in sync with inspectorSyntaxHighlight.css (.webkit-html-doctype) */
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dxml.js82 return chain(doctype(1));
164 function doctype(depth) {
169 state.tokenize = doctype(depth + 1);
176 state.tokenize = doctype(depth - 1);
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DinspectorSyntaxHighlight.css79 .webkit-html-doctype {
80 /* Keep this in sync with view-source.css (.webkit-html-doctype) */
/external/chromium_org/third_party/WebKit/Source/web/
H A DWebDocument.cpp207 WebDocumentType WebDocument::doctype() const function in class:blink::WebDocument
209 return WebDocumentType(constUnwrap<Document>()->doctype());
H A DWebPageSerializerImpl.cpp151 result.append(createMarkup(param->document->doctype()));
182 result.append(createMarkup(param->document->doctype()));
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMHelper.java1132 DocumentType doctype = doc.getDoctype();
1134 if (null != doctype)
1136 NamedNodeMap entities = doctype.getEntities();
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalFrame.cpp348 if (DocumentType* doctype = document()->doctype())
349 return createMarkup(doctype);
/external/chromium_org/tools/code_coverage/
H A Dcroc_html.py79 doctype = xml_impl.createDocumentType(
82 self.doc = xml_impl.createDocument(None, 'html', doctype)
/external/libvpx/libvpx/third_party/nestegg/src/
H A Dnestegg.c177 struct ebml_type doctype; member in struct:ebml
350 E_FIELD(ID_DOCTYPE, TYPE_STRING, struct ebml, doctype),
1656 char * doctype; local
1684 * the EBML ID and that the doctype is "webm". */
1687 if (ne_get_string(ctx->ebml.doctype, &doctype) != 0 ||
1688 strcmp(doctype, "webm") != 0) {
1704 char * doctype; local
1749 if (ne_get_string(ctx->ebml.doctype, &doctype) !
[all...]
/external/chromium_org/content/renderer/accessibility/
H A Dblink_ax_tree_source.cc463 const WebDocumentType& doctype = document.doctype(); local
464 if (!doctype.isNull()) {
466 UTF16ToUTF8(doctype.name()));
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
H A DDOM2DTM.java352 // the doctype. (Just let it go and Suppress it?
389 // skip the doctype. (Just let it go and Suppress it?
1422 DocumentType doctype = doc.getDoctype();
1424 if (null != doctype)
1426 NamedNodeMap entities = doctype.getEntities();
/external/chromium_org/third_party/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/chromium_org/third_party/WebKit/Source/core/html/parser/
H A DHTMLConstructionSite.cpp558 RefPtrWillBeRawPtr<DocumentType> doctype = DocumentType::create(m_document, token->name(), publicId, systemId); local
559 attachLater(m_attachmentRoot, doctype.release());
H A DHTMLTokenizer.cpp1088 SegmentedString::LookAheadResult result = source.lookAheadIgnoringCase(HTMLTokenizerNames::doctype);
1090 advanceStringAndASSERTIgnoringCase(source, "doctype");
/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

Completed in 605 milliseconds

12