HomeSort by relevance Sort by last modified time
    Searched refs:newDocType (Results 1 - 11 of 11) sorted by null

  /libcore/luni/src/test/java/tests/org/w3c/dom/
DOMImplementationCreateDocumentType.java 78 DocumentType newDocType;
97 newDocType = domImpl.createDocumentType(qualifiedName,
101 newDocType);
102 ownerDocument = newDocType.getOwnerDocument();
112 DocumentType newDocType;
137 newDocType = domImpl.createDocumentType(qualifiedName, publicId,
140 newDocType);
141 ownerDocument = newDocType.getOwnerDocument();
149 DocumentType newDocType;
174 newDocType = domImpl.createDocumentType(qualifiedName, publicId
    [all...]
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
domimplementationcreatedocumenttype01.java 68 DocumentType newDocType;
87 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
88 assertNotNull("domimplementationcreatedocumenttype01_newDocType", newDocType);
89 ownerDocument = newDocType.getOwnerDocument();
domimplementationcreatedocumenttype02.java 81 DocumentType newDocType;
106 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
107 assertNotNull("domimplementationcreatedocumenttype02_newDocType", newDocType);
108 ownerDocument = newDocType.getOwnerDocument();
domimplementationcreatedocumenttype04.java 80 DocumentType newDocType;
108 newDocType = domImpl.createDocumentType(qualifiedName, publicId, systemId);
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodecomparedocumentposition02.js 90 var newDocType;
111 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
112 replaced = doc.replaceChild(newDocType,docType);
113 documentPositionDoc = doc.compareDocumentPosition(newDocType);
115 documentPositionDocType = newDocType.compareDocumentPosition(doc);
nodeinsertbefore02.js 93 var newDocType;
120 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
121 newDoc = domImpl.createDocument(rootNS,rootName,newDocType);
124 insertedComment = newDoc.insertBefore(newComment,newDocType);
documentgetdoctype01.js 92 var newDocType;
113 newDocType = domImpl.createDocumentType(rootName,nullPubID,nullSysID);
116 replaced = doc.replaceChild(newDocType,docType);
documentgetxmlstandalone05.js 90 var newDocType;
117 newDocType = domImpl.createDocumentType(rootName,nullPubId,sysId);
118 newDoc = domImpl.createDocument(rootNS,rootName,newDocType);
nodeinsertbefore05.js 92 var newDocType;
110 newDocType = domImpl.createDocumentType(rootName,nullPubId,nullSysId);
113 inserted = doc.insertBefore(newDocType,docType);
nodereplacechild13.js 90 var newDocType;
116 newDocType = domImpl.createDocumentType(docElemName,nullPubId,nullSysId);
119 replaced = doc.replaceChild(newDocType,docType);
nodereplacechild40.js 95 var newDocType;
109 newDocType = domImpl.createDocumentType(rootName,publicId,systemId);
114 retNode = doc.replaceChild(newDocType,newComment);

Completed in 867 milliseconds