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

1 2 3 4 5

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documenttypegetdoctype.java 64 DocumentType docType;
67 docType = doc.getDoctype();
68 assertNotNull("docTypeNotNull", docType);
69 name = docType.getName();
documenttypegetentitieslength.java 63 DocumentType docType;
66 docType = doc.getDoctype();
67 assertNotNull("docTypeNotNull", docType);
68 entityList = docType.getEntities();
nodedocumenttypenodename.java 31 * Retrieve the DOCTYPE declaration from the XML file and
61 DocumentType docType;
64 docType = doc.getDoctype();
65 assertNotNull("docTypeNotNull", docType);
66 documentTypeName = docType.getNodeName();
nodedocumenttypenodevalue.java 59 DocumentType docType;
62 docType = doc.getDoctype();
63 assertNotNull("docTypeNotNull", docType);
64 attrList = docType.getAttributes();
documentgetdoctype.java 66 DocumentType docType;
70 docType = doc.getDoctype();
71 assertNotNull("docTypeNotNull", docType);
72 docTypeName = docType.getName();
80 nodeValue = docType.getNodeValue();
documentgetdoctypenodtd.java 68 DocumentType docType;
70 docType = doc.getDoctype();
71 assertNull("documentGetDocTypeNoDTDAssert", docType);
documenttypegetentitiestype.java 65 DocumentType docType;
70 docType = doc.getDoctype();
71 assertNotNull("docTypeNotNull", docType);
72 entityList = docType.getEntities();
documenttypegetnotations.java 65 DocumentType docType;
76 docType = doc.getDoctype();
77 assertNotNull("docTypeNotNull", docType);
78 notationList = docType.getNotations();
documenttypegetnotationstype.java 64 DocumentType docType;
69 docType = doc.getDoctype();
70 assertNotNull("docTypeNotNull", docType);
71 notationList = docType.getNotations();
entitygetentityname.java 65 DocumentType docType;
70 docType = doc.getDoctype();
71 assertNotNull("docTypeNotNull", docType);
72 entityList = docType.getEntities();
entitygetpublicid.java 67 DocumentType docType;
74 docType = doc.getDoctype();
75 assertNotNull("docTypeNotNull", docType);
76 entityList = docType.getEntities();
entitygetpublicidnull.java 66 DocumentType docType;
71 docType = doc.getDoctype();
72 assertNotNull("docTypeNotNull", docType);
73 entityList = docType.getEntities();
hc_documentgetdoctype.java 31 * Access Document.doctype for hc_staff, if not text/html should return DocumentType node.
59 DocumentType docType;
64 docType = doc.getDoctype();
69 assertNotNull("docTypeNotNull", docType);
72 if ((docType != null)) {
73 docTypeName = docType.getName();
81 nodeValue = docType.getNodeValue();
83 attributes = docType.getAttributes();
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();
nodeentitynodeattributes.java 60 DocumentType docType;
65 docType = doc.getDoctype();
66 assertNotNull("docTypeNotNull", docType);
67 entities = docType.getEntities();
nodeentitynodename.java 59 DocumentType docType;
64 docType = doc.getDoctype();
65 assertNotNull("docTypeNotNull", docType);
66 entities = docType.getEntities();
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
internalSubset01.java 43 * @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>
68 DocumentType docType;
71 docType = doc.getDoctype();
72 internal = docType.getInternalSubset();
nodehasattributes02.java 48 * Retrieve the docType node. Since this is not an element node check if hasAttributes returns
77 DocumentType docType;
80 docType = doc.getDoctype();
81 hasAttributes = docType.hasAttributes();
nodeissupported03.java 50 * Call the isSupported method specifying empty strings for feature and version on a docType
79 DocumentType docType;
82 docType = doc.getDoctype();
83 success = docType.isSupported("", "");
publicId01.java 42 * @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>
67 DocumentType docType;
70 docType = doc.getDoctype();
71 publicId = docType.getPublicId();

Completed in 601 milliseconds

1 2 3 4 5