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

1 2 3 4 5 6

  /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)
  /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);
  /prebuilts/gdb/darwin-x86/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...]
  /prebuilts/gdb/linux-x86/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...]
  /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...]
  /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...]
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
etree_lxml.py 67 dtd_str = "<!DOCTYPE %s>" % element.docinfo.root_name
69 dtd_str = """<!DOCTYPE %s "%s" "%s">""" % (
145 if element.docinfo.doctype:
146 dtd_str = element.docinfo.doctype
148 dtd_str = "<!DOCTYPE %s>" % element.docinfo.root_name
268 self.doctype = None
295 warnings.warn("lxml cannot represent empty doctype", DataLossWarning)
296 self.doctype = None
300 warnings.warn("lxml cannot represent non-xml doctype", DataLossWarning)
302 doctype = self.doctypeClass(coercedName, publicId, systemId
    [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-trace/catapult/third_party/beautifulsoup4/bs4/tests/
test_lxml.py 21 from bs4.element import Comment, Doctype, SoupStrainer
49 # In lxml < 2.3.5, an empty doctype causes a segfault. Skip this
54 "Skipping doctype test for old version of lxml to avoid segfault.")
56 soup = self.soup("<!DOCTYPE>")
57 doctype = soup.contents[0]
58 self.assertEqual("", doctype.strip())
71 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN">
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/serializer/
htmlserializer.py 198 if type == "Doctype":
199 doctype = "<!DOCTYPE %s" % token["name"]
202 doctype += ' PUBLIC "%s"' % token["publicId"]
204 doctype += " SYSTEM"
212 doctype += " %s%s%s" % (quote_char, token["systemId"], quote_char)
214 doctype += ">"
215 yield self.encodeStrict(doctype)
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/lib/simple_api/
simple_api_parser.js 22 doctype: this._wrapHandler(handlers.doctype),
92 this.handlers.doctype(token.name, token.publicId, token.systemId);
  /external/dbus/bus/
config-parser-trivial.h 43 const char *doctype,
  /external/chromium-trace/catapult/third_party/beautifulsoup4/bs4/
testing.py 12 Doctype,
58 """Assert that a given doctype string is handled correctly."""
61 # Make sure a Doctype object was created.
62 doctype = soup.contents[0]
63 self.assertEqual(doctype.__class__, Doctype)
64 self.assertEqual(doctype, doctype_fragment)
67 # Make sure that the doctype was correctly associated with the
72 """Generate and parse a document with the given doctype."""
73 doctype = '<!DOCTYPE %s>' % doctype_fragmen
    [all...]
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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-trace/catapult/third_party/vinn/third_party/parse5/lib/tree_adapters/
htmlparser2.js 3 var Doctype = require('../common/doctype');
124 var data = Doctype.serializeContent(name, publicId, systemId),
128 if (document.children[i].type === 'directive' && document.children[i].name === '!doctype') {
144 name: '!doctype',
312 return node.type === 'directive' && node.name === '!doctype';
  /external/doclava/res/assets/templates/
docpage.cs 1 <?cs include:"doctype.cs" ?>
sample.cs 1 <?cs include:"doctype.cs" ?>
  /external/chromium-trace/catapult/third_party/vinn/third_party/parse5/test/fixtures/
simple_api_parser_test.js 23 doctype: function (name, publicId, systemId) {
24 actual += '<!DOCTYPE ' + name;
101 var handlers = ['doctype', 'startTag', 'endTag', 'text', 'comment'].reduce(function (handlers, key) {

Completed in 1273 milliseconds

1 2 3 4 5 6