Searched refs:deep (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DChildNode.java81 * 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 DElementDefinitionImpl.java92 public Node cloneNode(boolean deep) { argument
95 (ElementDefinitionImpl) super.cloneNode(deep);
H A DPSVIDocumentImpl.java67 * @param deep boolean, iff true replicate children
69 public Node cloneNode(boolean deep) { argument
73 cloneNode(newdoc, deep);
H A DEntityReferenceImpl.java62 * 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 DEntityImpl.java161 public Node cloneNode(boolean deep) { argument
162 EntityImpl newentity = (EntityImpl)super.cloneNode(deep);
163 newentity.setReadOnly(true, deep);
H A DDocumentTypeImpl.java203 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 DParentNode.java120 * 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 DCoreDocumentImpl.java322 * @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 DAttrImpl.java232 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 DNamedNodeMapImpl.java370 * @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 DElementImpl.java147 * 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 DDocumentImpl.java153 * @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 DSOAPDocumentImpl.java155 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 DSOAPPartImpl.java447 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 DGetCallerClass.java84 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 DXSGrammarBucket.java79 * @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 DNodeImpl.java79 public void setReadOnly(boolean hide, boolean deep) { argument
H A DDefaultNode.java109 public Node cloneNode(boolean deep) { argument
H A DDefaultDocument.java90 public Node importNode(Node importedNode, boolean deep) throws DOMException { argument
/openjdk7/jaxp/src/org/w3c/dom/
H A DDocument.java259 * 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 DNode.java448 * 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 DDOM2DTMdefaultNamespaceDeclarationNode.java100 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 DUnImplNode.java531 * @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 DIIOMetadataNode.java637 * 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 Dsuperword.cpp709 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");

Completed in 129 milliseconds

12