HomeSort by relevance Sort by last modified time
    Searched refs:doctype (Results 1 - 25 of 71) sorted by null

1 2 3

  /external/linux-tools-perf/Documentation/
asciidoc.conf 36 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/
XSLOutputAttributes.java 39 * doctype-public
40 * doctype-system
60 *@return the public identifier to be used in the DOCTYPE declaration in the
67 * @return the system identifier to be used in the DOCTYPE declaration in
127 /** Set the value coming from the xsl:output doctype-public and doctype-system stylesheet properties
128 * @param system the system identifier to be used in the DOCTYPE declaration
130 * @param pub the public identifier to be used in the DOCTYPE declaration in
135 /** Set the value coming from the xsl:output doctype-public stylesheet attribute.
136 * @param doctype the public identifier to be used in the DOCTYP
    [all...]
  /libcore/luni/src/main/java/org/w3c/dom/
DOMImplementation.java 75 * @param doctype The type of document to be created or <code>null</code>.
76 * When <code>doctype</code> is not <code>null</code>, its
81 * <code>doctype</code> are <code>null</code>, the returned
97 * <br>WRONG_DOCUMENT_ERR: Raised if <code>doctype</code> has already
107 DocumentType doctype)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentType.cpp 70 if (!doc->doctype())
79 if (insertionPoint->inDocument() && document() && document()->doctype() == this)
DOMImplementation.cpp 196 const String& qualifiedName, DocumentType* doctype, ExceptionState& es)
216 // WrongDocumentError: Raised if doctype has already been used with a different document or was
221 if (doctype && doctype->document()) {
226 if (doctype)
227 doc->appendChild(doctype);
319 d->write("<!doctype html><html><body></body></html>");
DOMImplementation.idl 37 [TreatNullAs=NullString,Default=Undefined] optional DocumentType doctype);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
DOMImplementationImpl.java 43 DocumentType doctype) throws DOMException {
44 return new DocumentImpl(this, namespaceURI, qualifiedName, doctype, null);
NodeImpl.java 614 DocumentTypeImpl doctype = (DocumentTypeImpl) node; local
615 values.add(doctype.getPublicId());
616 values.add(doctype.getSystemId());
617 values.add(doctype.getInternalSubset());
618 values.add(doctype.getEntities());
619 values.add(doctype.getNotations());
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 234 if self.document.doctype:
238 self.document.doctype.internalSubset = subset
242 doctype = self.document.implementation.createDocumentType(
244 doctype.ownerDocument = self.document
245 _append_child(self.document, doctype)
246 self.document.doctype = doctype
247 if self._filter and self._filter.acceptNode(doctype) == FILTER_REJECT:
248 self.document.doctype = None
250 doctype = Non
    [all...]
minidom.py 1485 doctype = None variable in class:Document
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
expatbuilder.py 234 if self.document.doctype:
238 self.document.doctype.internalSubset = subset
242 doctype = self.document.implementation.createDocumentType(
244 doctype.ownerDocument = self.document
245 _append_child(self.document, doctype)
246 self.document.doctype = doctype
247 if self._filter and self._filter.acceptNode(doctype) == FILTER_REJECT:
248 self.document.doctype = None
250 doctype = Non
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/
JTidyDOMImplementation.java 89 * @param doctype The type of document to be created or <code>null</code>.
90 * When <code>doctype</code> is not <code>null</code>, its
106 * <br>WRONG_DOCUMENT_ERR: Raised if <code>doctype</code> has already
119 DocumentType doctype) throws DOMException {
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
plist_writer.py 120 doctype = dom_impl.createDocumentType(
124 self._doc = dom_impl.createDocument(None, 'plist', doctype)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_minidom.py 22 def create_doc_without_doctype(doctype=None):
23 return getDOMImplementation().createDocument(None, "doc", doctype)
26 doctype = getDOMImplementation().createDocumentType("doc", None, None)
27 doctype.entities._seq = []
28 doctype.notations._seq = []
31 doctype.notations._seq.append(notation)
38 doctype.entities._seq.append(entity)
39 return doctype
42 doctype = create_nonempty_doctype()
43 doc = create_doc_without_doctype(doctype)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_minidom.py 22 def create_doc_without_doctype(doctype=None):
23 return getDOMImplementation().createDocument(None, "doc", doctype)
26 doctype = getDOMImplementation().createDocumentType("doc", None, None)
27 doctype.entities._seq = []
28 doctype.notations._seq = []
31 doctype.notations._seq.append(notation)
38 doctype.entities._seq.append(entity)
39 return doctype
42 doctype = create_nonempty_doctype()
43 doc = create_doc_without_doctype(doctype)
    [all...]
  /build/tools/droiddoc/templates-ds/
sampleindex.cs 1 <?cs include:"doctype.cs" ?>
  /build/tools/droiddoc/templates-pdk/
sampleindex.cs 1 <?cs include:"doctype.cs" ?>
  /build/tools/droiddoc/templates-sac/
sampleindex.cs 1 <?cs include:"doctype.cs" ?>
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
inspectorSyntaxHighlight.css 118 .webkit-html-doctype {
119 /* Keep this in sync with view-source.css (.webkit-html-doctype) */
  /external/doclava/res/assets/templates/
docpage.cs 1 <?cs include:"doctype.cs" ?>
sample.cs 1 <?cs include:"doctype.cs" ?>
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java 78 = "<!DOCTYPE menu ["
99 private DocumentType doctype; field in class:DomTest
135 // doctype nodes
136 doctype = document.getDoctype();
137 if (doctype.getEntities() != null) {
138 sp = (Entity) doctype.getEntities().item(0);
140 if (doctype.getNotations() != null) {
141 png = (Notation) doctype.getNotations().item(0);
177 allNodes.addAll(Arrays.asList(document, doctype, menu, item, itemXmlns,
201 assertEquals(null, doctype.lookupNamespaceURI("a"))
    [all...]
  /external/chromium/webkit/glue/
webaccessibility.cc 377 const WebKit::WebDocumentType& doctype = document.doctype(); local
378 if (!doctype.isNull())
379 attributes[ATTR_DOC_DOCTYPE] = doctype.name();
  /external/chromium_org/third_party/WebKit/public/web/
WebDocument.h 115 WEBKIT_EXPORT WebDocumentType doctype() const;
  /external/tinyxml/
xmltest.cpp 863 // DOCTYPE not preserved (950171)
865 const char* doctype = local
867 "<!DOCTYPE PLAY SYSTEM 'play.dtd'>"
873 doc.Parse( doctype );
880 XmlTest( "Correct value of unknown.", "!DOCTYPE PLAY SYSTEM 'play.dtd'", unknown->Value() );
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
    [all...]

Completed in 714 milliseconds

1 2 3