HomeSort by relevance Sort by last modified time
    Searched refs:docType (Results 51 - 75 of 233) sorted by null

1 23 4 5 6 7 8 910

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
hc_entitiesremovenameditem1.java 63 DocumentType docType;
66 docType = doc.getDoctype();
71 assertNotNull("docTypeNotNull", docType);
72 entities = docType.getEntities();
hc_entitiessetnameditem1.java 64 DocumentType docType;
68 docType = doc.getDoctype();
73 assertNotNull("docTypeNotNull", docType);
74 entities = docType.getEntities();
hc_nodevalue07.java 66 DocumentType docType;
68 docType = doc.getDoctype();
73 assertNotNull("docTypeNotNull", docType);
74 nodeMap = docType.getEntities();
hc_nodevalue08.java 63 DocumentType docType;
68 docType = doc.getDoctype();
73 assertNotNull("docTypeNotNull", docType);
74 nodeMap = docType.getNotations();
hc_notationsremovenameditem1.java 63 DocumentType docType;
66 docType = doc.getDoctype();
71 assertNotNull("docTypeNotNull", docType);
72 notations = docType.getNotations();
hc_notationssetnameditem1.java 64 DocumentType docType;
68 docType = doc.getDoctype();
73 assertNotNull("docTypeNotNull", docType);
74 notations = docType.getNotations();
nodevalue07.java 63 DocumentType docType;
65 docType = doc.getDoctype();
66 assertNotNull("docTypeNotNull", docType);
67 nodeMap = docType.getEntities();
nodevalue08.java 60 DocumentType docType;
65 docType = doc.getDoctype();
66 assertNotNull("docTypeNotNull", docType);
67 nodeMap = docType.getNotations();
notationgetsystemid.java 65 DocumentType docType;
71 docType = doc.getDoctype();
72 assertNotNull("docTypeNotNull", docType);
73 notations = docType.getNotations();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
namednodemapgetnameditemns01.java 73 DocumentType docType;
83 docType = doc.getDoctype();
84 entities = docType.getEntities();
86 notations = docType.getNotations();
namednodemapremovenameditemns05.java 73 DocumentType docType;
80 docType = doc.getDoctype();
81 entities = docType.getEntities();
83 notations = docType.getNotations();
namednodemapsetnameditemns09.java 72 DocumentType docType;
78 docType = doc.getDoctype();
79 entities = docType.getEntities();
80 notations = docType.getNotations();
importNode09.java 77 DocumentType docType;
84 docType = aNewDoc.getDoctype();
85 entityList = docType.getEntities();
90 docType = ownerDocument.getDoctype();
91 system = docType.getSystemId();
createDocument01.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype)
42 * "prefix::local", and doctype as null. Method should raise
75 DocumentType docType = null;
85 aNewDoc = domImpl.createDocument(namespaceURI, malformedName, docType);
createDocument02.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
73 DocumentType docType = null;
83 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocument06.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
76 DocumentType docType = null;
86 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocument07.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
39 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
41 * qualifiedName is "y:x" and doctype is null.
72 DocumentType docType = null;
80 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocument08.java 60 DocumentType docType = null;
70 aNewDoc = domImpl.createDocument(namespaceURI, "", docType);
createDocumentType04.java 63 DocumentType docType = null;
71 docType = domImpl.createDocumentType("", publicId, systemId);
documentgetelementsbytagnameNS01.java 70 DocumentType docType = null;
78 newDoc = domImpl.createDocument(nullNS, "root", docType);
domimplementationcreatedocument04.java 86 DocumentType docType = null;
94 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
domimplementationcreatedocument05.java 85 DocumentType docType = null;
93 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNotationsRemoveNamedItemNS.java 70 DocumentType docType;
73 docType = doc.getDoctype();
76 assertNotNull("docTypeNotNull", docType);
77 notations = docType.getNotations();
HCNotationsSetNamedItemNS.java 71 DocumentType docType;
75 docType = doc.getDoctype();
78 assertNotNull("docTypeNotNull", docType);
79 notations = docType.getNotations();
ImportNode.java 99 DocumentType docType;
117 docType = ownerDocument.getDoctype();
118 system = docType.getSystemId();
140 DocumentType docType;
149 docType = ownerDocument.getDoctype();
150 system = docType.getSystemId();
162 DocumentType docType;
171 docType = ownerDocument.getDoctype();
172 system = docType.getSystemId();
206 DocumentType docType;
    [all...]

Completed in 461 milliseconds

1 23 4 5 6 7 8 910