HomeSort by relevance Sort by last modified time
    Searched defs:docType (Results 26 - 50 of 120) sorted by null

12 3 4 5

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeentitynodetype.java 60 DocumentType docType;
65 docType = doc.getDoctype();
66 assertNotNull("docTypeNotNull", docType);
67 entities = docType.getEntities();
nodeentitynodevalue.java 60 DocumentType docType;
65 docType = doc.getDoctype();
66 assertNotNull("docTypeNotNull", docType);
67 entities = docType.getEntities();
nodeentitysetnodevalue.java 60 DocumentType docType;
65 docType = doc.getDoctype();
66 assertNotNull("docTypeNotNull", docType);
67 entities = docType.getEntities();
nodenotationnodeattributes.java 63 DocumentType docType;
68 docType = doc.getDoctype();
69 assertNotNull("docTypeNotNull", docType);
70 notations = docType.getNotations();
nodenotationnodename.java 64 DocumentType docType;
69 docType = doc.getDoctype();
70 assertNotNull("docTypeNotNull", docType);
71 notations = docType.getNotations();
nodenotationnodetype.java 63 DocumentType docType;
68 docType = doc.getDoctype();
69 assertNotNull("docTypeNotNull", docType);
70 notations = docType.getNotations();
nodenotationnodevalue.java 64 DocumentType docType;
69 docType = doc.getDoctype();
70 assertNotNull("docTypeNotNull", docType);
71 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();
notationgetnotationname.java 62 DocumentType docType;
67 docType = doc.getDoctype();
68 assertNotNull("docTypeNotNull", docType);
69 notations = docType.getNotations();
notationgetpublicid.java 61 DocumentType docType;
66 docType = doc.getDoctype();
67 assertNotNull("docTypeNotNull", docType);
68 notations = docType.getNotations();
notationgetpublicidnull.java 66 DocumentType docType;
71 docType = doc.getDoctype();
72 assertNotNull("docTypeNotNull", docType);
73 notations = docType.getNotations();
notationgetsystemid.java 65 DocumentType docType;
71 docType = doc.getDoctype();
72 assertNotNull("docTypeNotNull", docType);
73 notations = docType.getNotations();
notationgetsystemidnull.java 62 DocumentType docType;
67 docType = doc.getDoctype();
68 assertNotNull("docTypeNotNull", docType);
69 notations = docType.getNotations();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
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);
createDocument03.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
36 * if parameter doctype has been used with a different document.
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
39 * this domimplementation where doctype is the type of this document.
72 DocumentType docType;
76 docType = doc.getDoctype();
82 aNewDoc = domImpl.createDocument(namespaceURI, qualifiedName, docType);
createDocument04.java 34 * The "createDocument(namespaceURI,qualifiedName,doctype)" method for a
36 * if parameter doctype was created from a different implementation.
38 * Invoke method createDocument(namespaceURI,qualifiedName,doctype) on
40 * Doctype is the type of this document.
74 DocumentType docType;
79 docType = doc.getDoctype();
85 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);
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);
documentimportnode07.java 76 DocumentType docType;
78 docType = doc.getDoctype();
83 imported = doc.importNode(docType, true);
documenttypeinternalSubset01.java 40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-internalSubset</a>
66 DocumentType docType;
73 docType = domImpl.createDocumentType("l2:root", nullNS, nullNS);
74 internal = docType.getInternalSubset();
documenttypepublicid01.java 40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-publicId</a>
66 DocumentType docType;
73 docType = domImpl.createDocumentType("l2:root", "PUB", nullNS);
74 publicId = docType.getPublicId();

Completed in 114 milliseconds

12 3 4 5