Searched defs:rootNode (Results 1 - 20 of 20) sorted by relevance

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DCheckNodeListModel.java35 private Node rootNode; field in class:CheckNodeListModel
38 public void setNode(Node rootNode) { argument
39 this.rootNode = rootNode;
40 super.setNode(rootNode);
44 return (CheckNode) rootNode.getChildren().getNodes()[index];
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/soap/
H A DSAAJResult.java117 * @param rootNode - the root to which the results will be appended
121 public SAAJResult(SOAPElement rootNode) { argument
122 super(rootNode);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDeepNodeListImpl.java83 protected NodeImpl rootNode; // Where the search started field in class:DeepNodeListImpl
96 public DeepNodeListImpl(NodeImpl rootNode, String tagName) { argument
97 this.rootNode = rootNode;
103 public DeepNodeListImpl(NodeImpl rootNode, argument
105 this(rootNode, tagName);
126 if(rootNode.changes() != changes) {
128 changes = rootNode.changes();
140 thisNode = rootNode;
176 else if (current != rootNode
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DXmlPolicyModelMarshaller.java145 * @param rootNode The ModelNode that is marshalled.
146 * @param writer The TypedXmlWriter onto which the content of the rootNode is marshalled.
148 private void marshal(final NamespaceVersion nsVersion, final ModelNode rootNode, final TypedXmlWriter writer) { argument
149 for (ModelNode node : rootNode) {
H A DPolicySourceModel.java80 private ModelNode rootNode; field in class:PolicySourceModel
153 this.rootNode = ModelNode.createRootPolicyNode(this);
170 return rootNode;
244 result = result && this.rootNode.equals(that.rootNode);
258 result = 37 * result + this.rootNode.hashCode();
277 rootNode.toString(1, buffer).append(PolicyUtils.Text.NEW_LINE).append('}');
286 clone.rootNode = this.rootNode.clone();
288 clone.rootNode
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DJJTParserState.java64 Node rootNode() { method in class:JJTParserState
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/
H A DCanonicalizerSpi.java174 * @param rootNode
178 public abstract byte[] engineCanonicalizeSubTree(Node rootNode) argument
184 * @param rootNode
189 public abstract byte[] engineCanonicalizeSubTree(Node rootNode, String inclusiveNamespaces) argument
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/c14n/implementations/
H A DCanonicalizer20010315Excl.java79 * @param rootNode
83 public byte[] engineCanonicalizeSubTree(Node rootNode) argument
85 return this.engineCanonicalizeSubTree(rootNode, "",null);
90 * @param rootNode
95 public byte[] engineCanonicalizeSubTree(Node rootNode, argument
97 return this.engineCanonicalizeSubTree(rootNode, inclusiveNamespaces,null);
101 * @param rootNode
104 * @return the rootNode c14n.
107 public byte[] engineCanonicalizeSubTree(Node rootNode, argument
111 return super.engineCanonicalizeSubTree(rootNode,exc
120 engineCanonicalize(XMLSignatureInput rootNode, String inclusiveNamespaces) argument
[all...]
H A DCanonicalizer11.java393 * @param rootNode
398 public byte[] engineCanonicalizeSubTree(Node rootNode, argument
H A DCanonicalizer20010315.java339 * @param rootNode
344 public byte[] engineCanonicalizeSubTree(Node rootNode, String inclusiveNamespaces) argument
H A DCanonicalizerBase.java120 * @param rootNode
123 public byte[] engineCanonicalizeSubTree(Node rootNode) argument
125 return engineCanonicalizeSubTree(rootNode,(Node)null);
192 * @param rootNode
199 byte[] engineCanonicalizeSubTree(Node rootNode,Node excludeNode) argument
205 if (rootNode != null && rootNode.getNodeType() == Node.ELEMENT_NODE) {
207 getParentNameSpaces((Element)rootNode,ns);
210 this.canonicalizeSubTree(rootNode,ns,rootNode,nodeLeve
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Bytecodes/src/com/sun/hotspot/igv/bytecodes/
H A DBytecodeViewTopComponent.java54 private MethodNode rootNode; field in class:BytecodeViewTopComponent
62 rootNode = new MethodNode(null, null, "");
63 manager.setRootContext(rootNode);
162 rootNode.update(graph, g.getMethod());
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DPKIXCertPathValidator.java188 PolicyNodeImpl rootNode = new PolicyNodeImpl(null,
192 doValidate(anchor, cp, certList, pkixParam, rootNode);
299 PolicyNodeImpl rootNode) throws CertPathValidatorException
316 rootNode);
296 doValidate( TrustAnchor anchor, CertPath cpOriginal, ArrayList<X509Certificate> certList, PKIXParameters pkixParam, PolicyNodeImpl rootNode) argument
H A DReverseState.java79 PolicyNodeImpl rootNode; field in class:ReverseState
137 sb.append("\n rootNode: " + rootNode);
210 rootNode = new PolicyNodeImpl
393 if (rootNode != null) {
394 clonedState.rootNode = rootNode.copyTree();
H A DPolicyChecker.java66 private PolicyNodeImpl rootNode; field in class:PolicyChecker
86 * @param rootNode the initial root node of the valid policy tree
91 PolicyNodeImpl rootNode) throws CertPathValidatorException
106 this.rootNode = rootNode;
211 + "policyTree = " + rootNode);
223 rootNode = processPolicies(certIndex, initPolicies, explicitPolicy,
224 policyMapping, inhibitAnyPolicy, rejectPolicyQualifiers, rootNode,
245 + "policyTree = " + rootNode);
431 PolicyNodeImpl rootNode
88 PolicyChecker(Set<String> initialPolicies, int certPathLen, boolean expPolicyRequired, boolean polMappingInhibited, boolean anyPolicyInhibited, boolean rejectPolicyQualifiers, PolicyNodeImpl rootNode) argument
593 rewriteLeafNodes(int certIndex, Set<String> initPolicies, PolicyNodeImpl rootNode) argument
652 processParents(int certIndex, boolean policiesCritical, boolean rejectPolicyQualifiers, PolicyNodeImpl rootNode, String curPolicy, Set<PolicyQualifierInfo> pQuals, boolean matchAny) argument
737 processPolicyMappings(X509CertImpl currCert, int certIndex, int policyMapping, PolicyNodeImpl rootNode, boolean policiesCritical, Set<PolicyQualifierInfo> anyQuals) argument
856 removeInvalidNodes(PolicyNodeImpl rootNode, int certIndex, Set<String> initPolicies, CertificatePoliciesExtension currCertPolicies) argument
[all...]
/openjdk7/jdk/src/macosx/native/jobjc/src/generator/java/com/apple/internal/jobjc/generator/model/
H A DFramework.java71 final Node rootNode; field in class:Framework
110 rootNode = (Node)XPATH.evaluate("signatures", new InputSource(bsFile.getAbsolutePath()), XPathConstants.NODE);
130 dependencies = getNodesFor(rootNode, "depends_on", FrameworkDependency.class, this);
140 structs = getNodesFor(rootNode, "struct", Struct.class, this);
152 cfTypes = getNodesFor(rootNode, "cftype", CFType.class, this);
156 opaques = getNodesFor(rootNode, "opaque", Opaque.class, this);
160 constants = getNodesFor(rootNode, "constant", Constant.class, this);
161 stringConstants = getNodesFor(rootNode, "string_constant", StringConstant.class, this);
162 enums = getNodesFor(rootNode, "enum", NativeEnum.class, this);
166 functions = getNodesFor(rootNode, "functio
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DKeyIndex.java94 public void add(Object value, int node, int rootNode) { argument
95 if (_currentDocumentNode != rootNode) {
96 _currentDocumentNode = rootNode;
98 _rootToIndexMap.put(new Integer(rootNode), _index);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignatureInput.java189 * Construct a XMLSignatureInput from a subtree rooted by rootNode. This
192 * @param rootNode
194 public XMLSignatureInput(Node rootNode) argument
196 this._subNode = rootNode;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DXMLUtils.java104 * @param rootNode
109 public static void getSet(Node rootNode,Set<Node> result,Node exclude ,boolean com) { argument
110 if ((exclude!=null) && isDescendantOrSelf(exclude,rootNode)){
113 getSetRec(rootNode,result,exclude,com);
117 static final void getSetRec(final Node rootNode,final Set<Node> result, argument
120 if (rootNode==exclude) {
123 switch (rootNode.getNodeType()) {
125 result.add(rootNode);
126 Element el=(Element)rootNode;
128 NamedNodeMap nl = ((Element)rootNode)
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java1303 public PreorderEnumeration(TreeNode rootNode) { argument
1306 v.addElement(rootNode); // PENDING: don't really need a vector
1337 public PostorderEnumeration(TreeNode rootNode) { argument
1339 root = rootNode;
1371 public BreadthFirstEnumeration(TreeNode rootNode) { argument
1374 v.addElement(rootNode); // PENDING: don't really need a vector

Completed in 1612 milliseconds