Home
last modified time | relevance | path

Searched refs:rootNode (Results 1 – 25 of 26) sorted by relevance

12

/libcore/luni/src/test/java/tests/org/w3c/dom/
DIsSupported.java59 Node rootNode; in testIsSupported1() local
62 rootNode = doc.getDocumentElement(); in testIsSupported1()
63 state = rootNode.isSupported("XXX", "1.0"); in testIsSupported1()
68 Node rootNode; in testIsSupported2() local
71 rootNode = doc.getDocumentElement(); in testIsSupported2()
72 state = rootNode.isSupported("XML", "9.0"); in testIsSupported2()
77 Node rootNode; in testIsSupported4() local
80 rootNode = doc.getDocumentElement(); in testIsSupported4()
81 state = rootNode.isSupported("xml", "1.0"); in testIsSupported4()
86 Node rootNode; in testIsSupported5() local
[all …]
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
DPolicyChecker.java66 private PolicyNodeImpl rootNode; field in PolicyChecker
91 PolicyNodeImpl rootNode) in PolicyChecker() argument
106 this.rootNode = rootNode; in PolicyChecker()
213 + "policyTree = " + rootNode); in checkPolicy()
225 rootNode = processPolicies(certIndex, initPolicies, explicitPolicy, in checkPolicy()
226 policyMapping, inhibitAnyPolicy, rejectPolicyQualifiers, rootNode, in checkPolicy()
247 + "policyTree = " + rootNode); in checkPolicy()
433 PolicyNodeImpl rootNode = null; in processPolicies() local
437 rootNode = null; in processPolicies()
439 rootNode = origRootNode.copyTree(); in processPolicies()
[all …]
DPKIXCertPathValidator.java182 PolicyNodeImpl rootNode = in validate() local
192 rootNode); in validate()
/libcore/dom/src/test/java/org/w3c/domts/level2/core/
DisSupported12.java91 Node rootNode; in runTest() local
95 rootNode = doc.getDocumentElement(); in runTest()
96 state = rootNode.isSupported("Core", "2.0"); in runTest()
100 state = rootNode.isSupported(featureElement, "1.0"); in runTest()
104 state = rootNode.isSupported(featureElement, "2.0"); in runTest()
DisSupported02.java72 Node rootNode; in runTest() local
75 rootNode = doc.getDocumentElement(); in runTest()
76 state = rootNode.isSupported("XML", "9.0"); in runTest()
DisSupported09.java74 Node rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
78 state = rootNode.isSupported("XML", "1.0"); in runTest()
DisSupported07.java74 Node rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
78 state = rootNode.isSupported("XML", ""); in runTest()
DisSupported04.java74 Node rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
78 state = rootNode.isSupported("xml", "1.0"); in runTest()
DisSupported05.java74 Node rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
78 state = rootNode.isSupported("core", "2.0"); in runTest()
DisSupported06.java74 Node rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
78 state = rootNode.isSupported("xml", "2.0"); in runTest()
DisSupported10.java74 Node rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
78 state = rootNode.isSupported("CORE", "2.0"); in runTest()
DisSupported13.java62 Node rootNode; in runTest() local
65 rootNode = doc.getDocumentElement(); in runTest()
66 state = rootNode.isSupported("Core", ""); in runTest()
DisSupported01.java72 Node rootNode; in runTest() local
75 rootNode = doc.getDocumentElement(); in runTest()
76 state = rootNode.isSupported("XXX", "1.0"); in runTest()
DisSupported11.java74 Node rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
78 state = rootNode.isSupported("XML", "2.0"); in runTest()
DisSupported14.java62 Node rootNode; in runTest() local
67 rootNode = doc.getDocumentElement(); in runTest()
68 state = rootNode.isSupported("Core", nullString); in runTest()
/libcore/dom/src/test/java/org/w3c/domts/level1/core/
Dnoderemovechild.java66 Element rootNode; in runTest() local
72 rootNode = doc.getDocumentElement(); in runTest()
73 childList = rootNode.getChildNodes(); in runTest()
75 removedChild = rootNode.removeChild(childToRemove); in runTest()
Dhc_noderemovechild.java66 Element rootNode; in runTest() local
72 rootNode = doc.getDocumentElement(); in runTest()
73 childList = rootNode.getChildNodes(); in runTest()
75 removedChild = rootNode.removeChild(childToRemove); in runTest()
Dhc_nodeelementnodetype.java62 Element rootNode; in runTest() local
65 rootNode = doc.getDocumentElement(); in runTest()
66 nodeType = (int) rootNode.getNodeType(); in runTest()
Dnodeelementnodetype.java63 Element rootNode; in runTest() local
66 rootNode = doc.getDocumentElement(); in runTest()
67 nodeType = (int) rootNode.getNodeType(); in runTest()
Dhc_nodeappendchildinvalidnodetype.java70 Element rootNode; in runTest() local
74 rootNode = doc.getDocumentElement(); in runTest()
80 appendedChild = rootNode.appendChild(newChild); in runTest()
Dnodeappendchildinvalidnodetype.java71 Element rootNode; in runTest() local
75 rootNode = doc.getDocumentElement(); in runTest()
81 appendedChild = rootNode.appendChild(newChild); in runTest()
Dnodeinsertbeforeinvalidnodetype.java71 Element rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
85 insertedNode = rootNode.insertBefore(newChild, refChild); in runTest()
Dnodereplacechildinvalidnodetype.java71 Element rootNode; in runTest() local
77 rootNode = doc.getDocumentElement(); in runTest()
85 replacedChild = rootNode.replaceChild(newChild, oldChild); in runTest()
Dhc_nodereplacechildinvalidnodetype.java72 Element rootNode; in runTest() local
81 rootNode = (Element) oldChild.getParentNode(); in runTest()
86 replacedChild = rootNode.replaceChild(newChild, oldChild); in runTest()
Dhc_nodeinsertbeforeinvalidnodetype.java72 Element rootNode; in runTest() local
81 rootNode = (Element) refChild.getParentNode(); in runTest()
86 insertedNode = rootNode.insertBefore(newChild, refChild); in runTest()

12