HomeSort by relevance Sort by last modified time
    Searched refs:doctype (Results 1 - 25 of 127) 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);
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());
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/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 = None
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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 = None
    [all...]
  /external/python/cpython2/Lib/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/python/cpython3/Lib/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/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...]
  /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 {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/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...]
  /external/python/cpython2/Lib/test/
test_minidom.py 19 "<!DOCTYPE doc PUBLIC 'http://xml.python.org/public'"
29 def create_doc_without_doctype(doctype=None):
30 return getDOMImplementation().createDocument(None, "doc", doctype)
33 doctype = getDOMImplementation().createDocumentType("doc", None, None)
34 doctype.entities._seq = []
35 doctype.notations._seq = []
38 doctype.notations._seq.append(notation)
45 doctype.entities._seq.append(entity)
46 return doctype
49 doctype = create_nonempty_doctype(
    [all...]
  /external/python/cpython3/Lib/test/
test_minidom.py 16 "<!DOCTYPE doc PUBLIC 'http://xml.python.org/public'"
26 def create_doc_without_doctype(doctype=None):
27 return getDOMImplementation().createDocument(None, "doc", doctype)
30 doctype = getDOMImplementation().createDocumentType("doc", None, None)
31 doctype.entities._seq = []
32 doctype.notations._seq = []
35 doctype.notations._seq.append(notation)
42 doctype.entities._seq.append(entity)
43 return doctype
46 doctype = create_nonempty_doctype(
    [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/make/tools/droiddoc/templates-pdk/
sampleindex.cs 1 <?cs include:"doctype.cs" ?>
  /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...]
  /prebuilts/go/darwin-x86/src/cmd/go/internal/get/
pkg_test.go 62 `<!doctype html><meta name="go-import" content="foo/bar git https://github.com/rsc/foo/bar">`,
67 `<!doctype html><title>Page Not Found</title><meta name=go-import content="chitin.io/chitin git https://github.com/chitin-io/chitin"><div style=position:relative>DRAFT</div>`,

Completed in 935 milliseconds

1 2 3 4 5 6