/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/ |
H A D | ChildNode.java | 81 * Note: since we never have any children deep is meaningless here, 90 * example -- will _not_ clone those children unless a "deep clone" 98 public Node cloneNode(boolean deep) { argument 100 ChildNode newnode = (ChildNode) super.cloneNode(deep);
|
H A D | ElementDefinitionImpl.java | 92 public Node cloneNode(boolean deep) { argument 95 (ElementDefinitionImpl) super.cloneNode(deep);
|
H A D | PSVIDocumentImpl.java | 67 * @param deep boolean, iff true replicate children 69 public Node cloneNode(boolean deep) { argument 73 cloneNode(newdoc, deep);
|
H A D | EntityReferenceImpl.java | 62 * considered while the user is deep in the tree. That is, if you're 147 public Node cloneNode(boolean deep) { argument 148 EntityReferenceImpl er = (EntityReferenceImpl)super.cloneNode(deep); 149 er.setReadOnly(true, deep); 291 public void setReadOnly(boolean readOnly, boolean deep) { argument 296 if (deep) { 333 * If we expect them to be deep,
|
H A D | EntityImpl.java | 161 public Node cloneNode(boolean deep) { argument 162 EntityImpl newentity = (EntityImpl)super.cloneNode(deep); 163 newentity.setReadOnly(true, deep);
|
H A D | DocumentTypeImpl.java | 203 public Node cloneNode(boolean deep) { argument 205 DocumentTypeImpl newnode = (DocumentTypeImpl)super.cloneNode(deep); 234 * Override inherited behavior from ParentNodeImpl to support deep equal. 420 public void setReadOnly(boolean readOnly, boolean deep) { argument 425 super.setReadOnly(readOnly, deep);
|
H A D | ParentNode.java | 120 * example -- will _not_ clone those children unless a "deep clone" 128 public Node cloneNode(boolean deep) { argument 133 ParentNode newnode = (ParentNode) super.cloneNode(deep); 144 // Then, if deep, clone the kids too. 145 if (deep) { 862 * Override inherited behavior from NodeImpl to support deep equal. 891 * Override default behavior so that if deep is true, children are also 898 public void setReadOnly(boolean readOnly, boolean deep) { argument 900 super.setReadOnly(readOnly, deep); 902 if (deep) { [all...] |
H A D | CoreDocumentImpl.java | 322 * @param deep boolean, iff true replicate children 324 public Node cloneNode(boolean deep) { argument 328 cloneNode(newdoc, deep); 338 protected void cloneNode(CoreDocumentImpl newdoc, boolean deep) { argument 345 if (deep) { 1500 public Node importNode(Node source, boolean deep) argument 1502 return importNode(source, deep, false, null); 1517 private Node importNode(Node source, boolean deep, boolean cloningDoc, argument 1610 deep = false; 1613 deep [all...] |
H A D | AttrImpl.java | 232 public Node cloneNode(boolean deep) { argument 237 AttrImpl clone = (AttrImpl) super.cloneNode(deep); 247 // is a deep clone or not 1067 * Override inherited behavior from ParentNode to support deep equal. 1068 * isEqualNode is always deep on Attr nodes. 1102 * Override default behavior so that if deep is true, children are also 1109 public void setReadOnly(boolean readOnly, boolean deep) { argument 1111 super.setReadOnly(readOnly, deep); 1113 if (deep) {
|
H A D | NamedNodeMapImpl.java | 370 * @param deep boolean true to pass this request along to the contained 375 void setReadOnly(boolean readOnly, boolean deep) { argument 377 if (deep && nodes != null) { 379 ((NodeImpl) nodes.get(i)).setReadOnly(readOnly,deep);
|
H A D | ElementImpl.java | 147 * will not be copied unless the "deep" flag is true, but Attributes 152 public Node cloneNode(boolean deep) { argument 154 ElementImpl newnode = (ElementImpl) super.cloneNode(deep); 1099 public void setReadOnly(boolean readOnly, boolean deep) { argument 1100 super.setReadOnly(readOnly,deep);
|
H A D | DocumentImpl.java | 153 * @param deep boolean, iff true replicate children 155 public Node cloneNode(boolean deep) { argument 159 cloneNode(newdoc, deep);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ |
H A D | SOAPDocumentImpl.java | 155 public org.w3c.dom.Node importNode(Node importedNode, boolean deep) argument 157 return super.importNode(importedNode, deep); 184 public Node cloneNode(boolean deep) { argument 186 super.cloneNode(newSoapPart.getDocument(), deep); 190 public void cloneNode(SOAPDocumentImpl newdoc, boolean deep) { argument 191 super.cloneNode(newdoc, deep);
|
H A D | SOAPPartImpl.java | 447 boolean deep) 450 return document.importNode(importedNode, deep); 480 public org.w3c.dom.Node cloneNode(boolean deep) { argument 482 return document.cloneNode(deep); 445 importNode( org.w3c.dom.Node importedNode, boolean deep) argument
|
/openjdk7/jdk/test/sun/reflect/ |
H A D | GetCallerClass.java | 84 Inner1.deep(); 88 static void deep() { method in class:GetCallerClass.Test.Inner1 96 // 0: Reflection 1: deepest 2: deeper 3: deep 4: Test.selfTest
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/ |
H A D | XSGrammarBucket.java | 79 * @param deep whether to add imported grammars 82 public boolean putGrammar(SchemaGrammar grammar, boolean deep) { argument 89 // not deep import, then just add this one grammar 90 if (!deep) { 147 * @param deep whether to add imported grammars 152 public boolean putGrammar(SchemaGrammar grammar, boolean deep, boolean ignoreConflict) { argument 154 return putGrammar(grammar, deep); 164 if (!deep) {
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/opti/ |
H A D | NodeImpl.java | 79 public void setReadOnly(boolean hide, boolean deep) { argument
|
H A D | DefaultNode.java | 109 public Node cloneNode(boolean deep) { argument
|
H A D | DefaultDocument.java | 90 public Node importNode(Node importedNode, boolean deep) throws DOMException { argument
|
/openjdk7/jaxp/src/org/w3c/dom/ |
H A D | Document.java | 259 * Note that the <code>deep</code> parameter has no effect on 263 * <dd>If the <code>deep</code> option 281 * <code>importNode</code> <code>deep</code> parameter was set to 292 * copied. If a <code>deep</code> import is requested, the descendants 298 * copied, even if a <code>deep</code> import is requested, since the 309 * Note that the <code>deep</code> parameter has no effect on this type 315 * source node.Note that the <code>deep</code> parameter has no effect 322 * that the <code>deep</code> parameter has no effect on these types of 326 * @param deep If <code>true</code>, recursively import the subtree under 343 boolean deep) 342 importNode(Node importedNode, boolean deep) argument [all...] |
H A D | Node.java | 448 * contains unless it is a deep clone. This includes text contained in 455 * deep clone or not. Cloning an <code>EntityReference</code> 457 * <code>Entity</code> is available, no matter whether this is a deep 466 * @param deep If <code>true</code>, recursively clone the subtree under 471 public Node cloneNode(boolean deep); argument
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/ |
H A D | DOM2DTMdefaultNamespaceDeclarationNode.java | 100 public Node cloneNode(boolean deep) {throw new DTMException(NOT_SUPPORTED_ERR);} argument 228 * @param deep If <code>true</code>, recursively compare the subtrees; if
|
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/ |
H A D | UnImplNode.java | 531 * @param deep Flag indicating whether to clone deep (clone member variables) 535 public Node cloneNode(boolean deep) argument 945 * @param deep If <code>true</code>, recursively import the subtree under 954 public Node importNode(Node importedNode, boolean deep) throws DOMException argument
|
/openjdk7/jdk/src/share/classes/javax/imageio/metadata/ |
H A D | IIOMetadataNode.java | 637 * If a shallow clone is being performed (<code>deep</code> is 639 * siblings. If a deep clone is being performed, the new node 642 * @param deep if <code>true</code>, recursively clone the subtree 648 public Node cloneNode(boolean deep) { argument 653 if (deep) {
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | superword.cpp | 709 Node* deep = d1 > d2 ? s1 : s2; 714 return independent_path(shallow, deep); 719 bool SuperWord::independent_path(Node* shallow, Node* deep, uint dp) { argument 720 if (dp >= 1000) return false; // stop deep recursion 721 visited_set(deep); 723 assert(shal_depth <= depth(deep), "must be"); 724 for (DepPreds preds(deep, _dg); !preds.done(); preds.next()) { 2214 assert(depth < 101, "too deep");
|