/libcore/luni/src/test/java/tests/org/w3c/dom/ |
D | DOMImplementationHasFeature.java | 57 DOMImplementation domImpl; in testHasFeatureCore() local 60 domImpl = doc.getImplementation(); in testHasFeatureCore() 61 state = domImpl.hasFeature("core", "2.0"); in testHasFeatureCore() 66 DOMImplementation domImpl; in testHasFeatureXml() local 69 domImpl = doc.getImplementation(); in testHasFeatureXml() 70 state = domImpl.hasFeature("xml", "2.0"); in testHasFeatureXml() 75 DOMImplementation domImpl; in testHasFeature1() local 91 domImpl = doc.getImplementation(); in testHasFeature1() 94 success = domImpl.hasFeature(featureXML, version); in testHasFeature1() 96 success = domImpl.hasFeature(featureXML, version1); in testHasFeature1() [all …]
|
D | CreateDocument.java | 89 DOMImplementation domImpl; in testCreateDocument1() local 92 domImpl = doc.getImplementation(); in testCreateDocument1() 96 domImpl.createDocument(namespaceURI, malformedName, docType); in testCreateDocument1() 110 DOMImplementation domImpl; in testCreateDocument2() local 113 domImpl = doc.getImplementation(); in testCreateDocument2() 117 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument2() 174 DOMImplementation domImpl; in testCreateDocument5() local 208 domImpl = doc.getImplementation(); in testCreateDocument5() 212 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument5() 226 DOMImplementation domImpl; in testCreateDocument6() local [all …]
|
D | DOMImplementationCreateDocument.java | 57 DOMImplementation domImpl; in testCreateDocument3() local 76 domImpl = doc.getImplementation(); in testCreateDocument3() 79 newDoc = domImpl.createDocument(namespaceURI, qualifiedName, in testCreateDocument3() 86 DOMImplementation domImpl; in testCreateDocument4() local 94 domImpl = doc.getImplementation(); in testCreateDocument4() 99 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument4() 108 DOMImplementation domImpl; in testCreateDocument5() local 115 domImpl = doc.getImplementation(); in testCreateDocument5() 120 domImpl.createDocument(namespaceURI, qualifiedName, docType); in testCreateDocument5() 129 DOMImplementation domImpl; in testCreateDocument7() local [all …]
|
D | CreateDocumentType.java | 88 DOMImplementation domImpl; in testCreateDocumentType1() local 91 domImpl = doc.getImplementation(); in testCreateDocumentType1() 96 domImpl.createDocumentType(malformedName, publicId, systemId); in testCreateDocumentType1() 109 DOMImplementation domImpl; in testCreateDocumentType2() local 142 domImpl = doc.getImplementation(); in testCreateDocumentType2() 147 domImpl.createDocumentType(qualifiedName, publicId, in testCreateDocumentType2() 162 DOMImplementation domImpl; in testCreateDocumentType3() local 168 domImpl = doc.getImplementation(); in testCreateDocumentType3() 169 newType = domImpl.createDocumentType(qualifiedName, publicId, systemId); in testCreateDocumentType3() 179 DOMImplementation domImpl; in testCreateDocumentType4() local [all …]
|
D | NodeGetOwnerDocument.java | 78 DOMImplementation domImpl; in testGetOwnerDocument1() local 83 domImpl = doc.getImplementation(); in testGetOwnerDocument1() 84 docType = domImpl.createDocumentType("mydoc", nullID, nullID); in testGetOwnerDocument1() 94 DOMImplementation domImpl; in testGetOwnerDocument2() local 99 domImpl = doc.getImplementation(); in testGetOwnerDocument2() 100 docType = domImpl.createDocumentType("mydoc", nullNS, nullNS); in testGetOwnerDocument2() 101 newDoc = domImpl.createDocument("http://www.w3.org/DOM/Test", "mydoc", in testGetOwnerDocument2()
|
D | DOMImplementationCreateDocumentType.java | 77 DOMImplementation domImpl; in testCreateDocumentType1() local 92 domImpl = doc.getImplementation(); in testCreateDocumentType1() 97 newDocType = domImpl.createDocumentType(qualifiedName, in testCreateDocumentType1() 111 DOMImplementation domImpl; in testCreateDocumentType2() local 134 domImpl = doc.getImplementation(); in testCreateDocumentType2() 137 newDocType = domImpl.createDocumentType(qualifiedName, publicId, in testCreateDocumentType2() 148 DOMImplementation domImpl; in testCreateDocumentType4() local 171 domImpl = doc.getImplementation(); in testCreateDocumentType4() 174 newDocType = domImpl.createDocumentType(qualifiedName, publicId, in testCreateDocumentType4()
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | domimplementationhasfeature01.java | 68 DOMImplementation domImpl; in runTest() local 84 domImpl = doc.getImplementation(); in runTest() 87 success = domImpl.hasFeature(featureXML, version); in runTest() 89 success = domImpl.hasFeature(featureXML, version1); in runTest() 94 success = domImpl.hasFeature(featureCore, version); in runTest() 96 success = domImpl.hasFeature(featureCore, version1); in runTest() 97 success = domImpl.hasFeature(featureCore, version2); in runTest()
|
D | nodegetownerdocument02.java | 77 DOMImplementation domImpl; in runTest() local 82 domImpl = doc.getImplementation(); in runTest() 83 docType = domImpl.createDocumentType("mydoc", nullNS, nullNS); in runTest() 84 newDoc = domImpl.createDocument("http://www.w3.org/DOM/Test", "mydoc", docType); in runTest()
|
D | domimplementationfeaturexmlversion2.java | 84 DOMImplementation domImpl; in runTest() local 87 domImpl = doc.getImplementation(); in runTest() 88 state = domImpl.hasFeature("xml", "2.0"); in runTest()
|
D | domimplementationfeaturecore.java | 84 DOMImplementation domImpl; in runTest() local 87 domImpl = doc.getImplementation(); in runTest() 88 state = domImpl.hasFeature("core", "2.0"); in runTest()
|
D | domimplementationhasfeature02.java | 66 DOMImplementation domImpl; in runTest() local 69 domImpl = doc.getImplementation(); in runTest() 70 success = domImpl.hasFeature("Blah Blah", ""); in runTest()
|
D | createDocument08.java | 62 DOMImplementation domImpl; in runTest() local 65 domImpl = getImplementation(); in runTest() 70 aNewDoc = domImpl.createDocument(namespaceURI, "", docType); in runTest()
|
D | createDocumentType04.java | 65 DOMImplementation domImpl; in runTest() local 66 domImpl = getImplementation(); in runTest() 71 docType = domImpl.createDocumentType("", publicId, systemId); in runTest()
|
D | documenttypeinternalSubset01.java | 67 DOMImplementation domImpl; in runTest() local 72 domImpl = doc.getImplementation(); in runTest() 73 docType = domImpl.createDocumentType("l2:root", nullNS, nullNS); in runTest()
|
D | documenttypepublicid01.java | 67 DOMImplementation domImpl; in runTest() local 72 domImpl = doc.getImplementation(); in runTest() 73 docType = domImpl.createDocumentType("l2:root", "PUB", nullNS); in runTest()
|
D | documenttypesystemid01.java | 66 DOMImplementation domImpl; in runTest() local 70 domImpl = doc.getImplementation(); in runTest() 71 docType = domImpl.createDocumentType("l2:root", "PUB", "SYS"); in runTest()
|
D | documentgetelementsbytagnameNS01.java | 72 DOMImplementation domImpl; in runTest() local 77 domImpl = doc.getImplementation(); in runTest() 78 newDoc = domImpl.createDocument(nullNS, "root", docType); in runTest()
|
D | domimplementationcreatedocument07.java | 79 DOMImplementation domImpl; in runTest() local 85 domImpl = doc.getImplementation(); in runTest() 90 newDoc = domImpl.createDocument(namespaceURI, ":", docType); in runTest()
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | hc_domimplementationfeaturenoversion.java | 65 DOMImplementation domImpl; in runTest() local 68 domImpl = doc.getImplementation(); in runTest() 71 state = domImpl.hasFeature("HTML", ""); in runTest() 73 state = domImpl.hasFeature("XML", ""); in runTest()
|
D | hc_domimplementationfeaturexml.java | 63 DOMImplementation domImpl; in runTest() local 66 domImpl = doc.getImplementation(); in runTest() 69 state = domImpl.hasFeature("html", "1.0"); in runTest() 72 state = domImpl.hasFeature("xml", "1.0"); in runTest()
|
D | hc_domimplementationfeaturenull.java | 72 DOMImplementation domImpl; in runTest() local 75 domImpl = doc.getImplementation(); in runTest() 78 state = domImpl.hasFeature("HTML", null); in runTest() 81 state = domImpl.hasFeature("XML", null); in runTest()
|
D | domimplementationfeaturexml.java | 59 DOMImplementation domImpl; in runTest() local 62 domImpl = doc.getImplementation(); in runTest() 63 state = domImpl.hasFeature("xml", "1.0"); in runTest()
|
D | domimplementationfeaturenoversion.java | 60 DOMImplementation domImpl; in runTest() local 63 domImpl = doc.getImplementation(); in runTest() 64 state = domImpl.hasFeature("XML", ""); in runTest()
|
/libcore/dom/src/test/java/org/w3c/domts/ |
D | BatikTestDocumentBuilderFactory.java | 44 private DOMImplementation domImpl; field in BatikTestDocumentBuilderFactory 55 domImpl = null; in BatikTestDocumentBuilderFactory() 153 if (domImpl == null) { in getDOMImplementation() 162 domImpl = in getDOMImplementation() 168 return domImpl; in getDOMImplementation()
|
D | JTidyDocumentBuilderFactory.java | 33 private final DOMImplementation domImpl; field in JTidyDocumentBuilderFactory 61 domImpl = new JTidyDOMImplementation(); in JTidyDocumentBuilderFactory() 105 return domImpl; in getDOMImplementation() 109 return domImpl.hasFeature(feature, version); in hasFeature()
|