Searched refs:currentChild (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DContextEnumerator.java40 private Binding currentChild = null; field in class:ContextEnumerator
166 (currentChild != null) ); }
167 return currentChild != null;
188 return currentChild;
210 currentChild = getNextChild();
217 currentChild = null;
222 currentChild.getObject() instanceof Context) {
224 (Context)(currentChild.getObject()),
225 scope, currentChild.getName(),
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/keys/
H A DKeyInfo.java735 Node currentChild = this._constructionElement.getFirstChild();
737 while (currentChild != null) {
738 if (currentChild.getNodeType() == Node.ELEMENT_NODE) {
742 (Element) currentChild, uri, storage
750 currentChild = currentChild.getNextSibling();
770 Node currentChild=this._constructionElement.getFirstChild();
772 while (currentChild!=null) {
773 if (currentChild.getNodeType() == Node.ELEMENT_NODE) {
778 .engineLookupAndResolvePublicKey((Element) currentChild, ur
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DHeaderImpl.java137 Object currentChild = iterate(eachChild);
138 while (currentChild != null) {
139 if (!(currentChild instanceof SOAPHeaderElement)) {
140 currentChild = iterate(eachChild);
143 (HeaderElementImpl) currentChild;
144 currentChild = iterate(eachChild);
H A DElementImpl.java782 Node currentChild = getFirstChild();
784 while (currentChild != null) {
785 Node temp = currentChild.getNextSibling();
786 if (currentChild instanceof javax.xml.soap.Node) {
787 ((javax.xml.soap.Node) currentChild).detachNode();
789 Node parent = currentChild.getParentNode();
791 parent.removeChild(currentChild);
795 currentChild = temp;
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/signature/
H A DXMLSignatureInputDebugger.java231 for (Node currentChild = currentNode.getFirstChild(); currentChild != null; currentChild = currentChild
233 this.canonicalizeXPathNodeSet(currentChild);
425 for (Node currentChild = currentNode.getFirstChild(); currentChild != null; currentChild = currentChild
427 this.canonicalizeXPathNodeSet(currentChild);
[all...]

Completed in 3789 milliseconds