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

1 2 3 4 5 6 7 8 910

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
documentgetdoctype.java 66 DocumentType docType;
70 docType = doc.getDoctype();
71 assertNotNull("docTypeNotNull", docType);
72 docTypeName = docType.getName();
80 nodeValue = docType.getNodeValue();
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();
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();
documenttypegetentitiestype.java 65 DocumentType docType;
70 docType = doc.getDoctype();
71 assertNotNull("docTypeNotNull", docType);
72 entityList = docType.getEntities();
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();
entitygetpublicidnull.java 66 DocumentType docType;
71 docType = doc.getDoctype();
72 assertNotNull("docTypeNotNull", docType);
73 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();
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();
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();
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();
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/
documenttypesystemid01.java 40 * @see <a href="http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId">http://www.w3.org/TR/DOM-Level-2-Core/core#ID-Core-DocType-systemId</a>
65 DocumentType docType;
71 docType = domImpl.createDocumentType("l2:root", "PUB", "SYS");
72 publicId = docType.getPublicId();
73 systemId = docType.getSystemId();
hc_entitiesremovenameditemns1.java 61 DocumentType docType;
64 docType = doc.getDoctype();
69 assertNotNull("docTypeNotNull", docType);
70 entities = docType.getEntities();

Completed in 433 milliseconds

1 2 3 4 5 6 7 8 910