/libcore/luni/src/test/java/tests/org/w3c/dom/ |
D | HCNodeDocumentFragmentNormalize.java | 51 DocumentFragment docFragment; in testNodeDocumentFragmentNormalize1() local 57 docFragment = doc.createDocumentFragment(); in testNodeDocumentFragmentNormalize1() 59 retval = docFragment.appendChild(txtNode); in testNodeDocumentFragmentNormalize1() 61 retval = docFragment.appendChild(txtNode); in testNodeDocumentFragmentNormalize1() 62 docFragment.normalize(); in testNodeDocumentFragmentNormalize1() 63 txtNode = (Text) docFragment.getFirstChild(); in testNodeDocumentFragmentNormalize1() 71 DocumentFragment docFragment; in testNodeDocumentFragmentNormalize2() local 75 docFragment = doc.createDocumentFragment(); in testNodeDocumentFragmentNormalize2() 77 docFragment.appendChild(txtNode); in testNodeDocumentFragmentNormalize2() 78 docFragment.normalize(); in testNodeDocumentFragmentNormalize2() [all …]
|
D | DocumentImportNode.java | 247 DocumentFragment docFragment; in testImportNode9() local 254 docFragment = doc.createDocumentFragment(); in testImportNode9() 257 docFragment.appendChild(addressNode); in testImportNode9() 258 importedDocFrag = doc.importNode(docFragment, false); in testImportNode9() 264 DocumentFragment docFragment; in testImportNode10() local 271 docFragment = doc.createDocumentFragment(); in testImportNode10() 274 docFragment.appendChild(addressNode); in testImportNode10() 275 importedDocFrag = doc.importNode(docFragment, true); in testImportNode10()
|
D | NodeSetPrefix.java | 83 DocumentFragment docFragment; in testSetPrefix1() local 89 docFragment = doc.createDocumentFragment(); in testSetPrefix1() 92 docFragment.appendChild(element); in testSetPrefix1()
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
D | hc_nodedocumentfragmentnormalize1.java | 60 DocumentFragment docFragment; in runTest() local 65 docFragment = doc.createDocumentFragment(); in runTest() 67 retval = docFragment.appendChild(txtNode); in runTest() 69 retval = docFragment.appendChild(txtNode); in runTest() 70 docFragment.normalize(); in runTest() 71 txtNode = (Text) docFragment.getFirstChild(); in runTest()
|
D | hc_nodedocumentfragmentnormalize2.java | 60 DocumentFragment docFragment; in runTest() local 65 docFragment = doc.createDocumentFragment(); in runTest() 67 retval = docFragment.appendChild(txtNode); in runTest() 68 docFragment.normalize(); in runTest() 69 txtNode = (Text) docFragment.getFirstChild(); in runTest()
|
D | documentimportnode09.java | 76 DocumentFragment docFragment; in runTest() local 83 docFragment = doc.createDocumentFragment(); in runTest() 86 appendedChild = docFragment.appendChild(addressNode); in runTest() 87 importedDocFrag = doc.importNode(docFragment, false); in runTest()
|
D | documentimportnode10.java | 76 DocumentFragment docFragment; in runTest() local 83 docFragment = doc.createDocumentFragment(); in runTest() 86 appendedChild = docFragment.appendChild(addressNode); in runTest() 87 importedDocFrag = doc.importNode(docFragment, true); in runTest()
|
D | nodesetprefix01.java | 73 DocumentFragment docFragment; in runTest() local 79 docFragment = doc.createDocumentFragment(); in runTest() 81 appendedChild = docFragment.appendChild(element); in runTest()
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
D | nodedocumentfragmentnodevalue.java | 68 DocumentFragment docFragment; in runTest() local 72 docFragment = doc.createDocumentFragment(); in runTest() 73 attrList = docFragment.getAttributes(); in runTest() 75 value = docFragment.getNodeValue(); in runTest()
|
D | hc_nodedocumentfragmentnodevalue.java | 67 DocumentFragment docFragment; in runTest() local 71 docFragment = doc.createDocumentFragment(); in runTest() 72 attrList = docFragment.getAttributes(); in runTest() 74 value = docFragment.getNodeValue(); in runTest()
|
D | attrcreatedocumentfragment.java | 64 DocumentFragment docFragment; in runTest() local 72 docFragment = doc.createDocumentFragment(); in runTest() 75 appendedChild = docFragment.appendChild(newOne); in runTest() 76 domesticNode = docFragment.getFirstChild(); in runTest()
|
D | hc_attrcreatedocumentfragment.java | 65 DocumentFragment docFragment; in runTest() local 74 docFragment = doc.createDocumentFragment(); in runTest() 77 appendedChild = docFragment.appendChild(newOne); in runTest() 78 domesticNode = docFragment.getFirstChild(); in runTest()
|
D | hc_nodedocumentfragmentnodename.java | 64 DocumentFragment docFragment; in runTest() local 67 docFragment = doc.createDocumentFragment(); in runTest() 68 documentFragmentName = docFragment.getNodeName(); in runTest()
|
D | nodedocumentfragmentnodename.java | 65 DocumentFragment docFragment; in runTest() local 68 docFragment = doc.createDocumentFragment(); in runTest() 69 documentFragmentName = docFragment.getNodeName(); in runTest()
|