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

12

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/dom/
H A DChildNode.java82 * Note: since we never have any children deep is meaningless here,
91 * example -- will _not_ clone those children unless a "deep clone"
99 public Node cloneNode(boolean deep) { argument
101 ChildNode newnode = (ChildNode) super.cloneNode(deep);
H A DElementDefinitionImpl.java93 public Node cloneNode(boolean deep) { argument
96 (ElementDefinitionImpl) super.cloneNode(deep);
H A DPSVIDocumentImpl.java68 * @param deep boolean, iff true replicate children
70 public Node cloneNode(boolean deep) { argument
74 cloneNode(newdoc, deep);
H A DEntityReferenceImpl.java63 * considered while the user is deep in the tree. That is, if you're
148 public Node cloneNode(boolean deep) { argument
149 EntityReferenceImpl er = (EntityReferenceImpl)super.cloneNode(deep);
150 er.setReadOnly(true, deep);
292 public void setReadOnly(boolean readOnly, boolean deep) { argument
297 if (deep) {
334 * If we expect them to be deep,
H A DEntityImpl.java162 public Node cloneNode(boolean deep) { argument
163 EntityImpl newentity = (EntityImpl)super.cloneNode(deep);
164 newentity.setReadOnly(true, deep);
H A DParentNode.java119 * example -- will _not_ clone those children unless a "deep clone"
127 public Node cloneNode(boolean deep) { argument
132 ParentNode newnode = (ParentNode) super.cloneNode(deep);
143 // Then, if deep, clone the kids too.
144 if (deep) {
861 * Override inherited behavior from NodeImpl to support deep equal.
890 * Override default behavior so that if deep is true, children are also
897 public void setReadOnly(boolean readOnly, boolean deep) { argument
899 super.setReadOnly(readOnly, deep);
901 if (deep) {
[all...]
H A DDocumentTypeImpl.java236 public Node cloneNode(boolean deep) { argument
238 DocumentTypeImpl newnode = (DocumentTypeImpl)super.cloneNode(deep);
267 * Override inherited behavior from ParentNodeImpl to support deep equal.
453 public void setReadOnly(boolean readOnly, boolean deep) { argument
458 super.setReadOnly(readOnly, deep);
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 DCoreDocumentImpl.java367 * @param deep boolean, iff true replicate children
369 public Node cloneNode(boolean deep) { argument
373 cloneNode(newdoc, deep);
383 protected void cloneNode(CoreDocumentImpl newdoc, boolean deep) { argument
390 if (deep) {
1492 public Node importNode(Node source, boolean deep) argument
1494 return importNode(source, deep, false, null);
1509 private Node importNode(Node source, boolean deep, boolean cloningDoc, argument
1604 deep = false;
1607 deep
[all...]
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.java176 * be copied unless the "deep" flag is true, but Attributes are
182 public Node cloneNode(boolean deep) { argument
184 ElementImpl newnode = (ElementImpl) super.cloneNode(deep);
1089 public void setReadOnly(boolean readOnly, boolean deep) { argument
1090 super.setReadOnly(readOnly, deep);
/openjdk9/jdk/test/sun/reflect/Reflection/
H A DGetCallerClassWithDepth.java75 Inner1.deep();
79 static void deep() { method in class:GetCallerClassWithDepth.Test.Inner1
87 // 0: Reflection 1: deepest 2: deeper 3: deep 4: Test.selfTest
/openjdk9/jdk/test/jdk/internal/reflect/Reflection/
H A DGetCallerClassWithDepth.java76 Inner1.deep();
80 static void deep() { method in class:GetCallerClassWithDepth.Test.Inner1
88 // 0: Reflection 1: deepest 2: deeper 3: deep 4: Test.selfTest
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSGrammarBucket.java78 * @param deep whether to add imported grammars
81 public boolean putGrammar(SchemaGrammar grammar, boolean deep) { argument
88 // not deep import, then just add this one grammar
89 if (!deep) {
146 * @param deep whether to add imported grammars
151 public boolean putGrammar(SchemaGrammar grammar, boolean deep, boolean ignoreConflict) { argument
153 return putGrammar(grammar, deep);
163 if (!deep) {
/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/xerces/internal/impl/xs/opti/
H A DNodeImpl.java80 public void setReadOnly(boolean hide, boolean deep) { argument
H A DDefaultNode.java110 public Node cloneNode(boolean deep) { argument
H A DDefaultDocument.java91 public Node importNode(Node importedNode, boolean deep) throws DOMException { argument
/openjdk9/jaxp/src/java.xml/share/classes/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.java453 * contains unless it is a deep clone. This includes text contained in
460 * deep clone or not. Cloning an <code>EntityReference</code>
462 * <code>Entity</code> is available, no matter whether this is a deep
471 * @param deep If <code>true</code>, recursively clone the subtree under
476 public Node cloneNode(boolean deep); argument
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPDocumentImpl.java215 public org.w3c.dom.Node importNode(Node importedNode, boolean deep) argument
218 final Node newNode = document.importNode(domNode, deep);
223 if (deep && importedNode.hasChildNodes()) {
226 registerChildNodes(childNodes.item(i), deep);
232 registerChildNodes(newNode, deep);
237 //If deep = true, also register all children of parentNode to domToSoap map.
238 public void registerChildNodes(Node parentNode, boolean deep) { argument
256 if (deep) {
449 public Node cloneNode(boolean deep) { argument
450 Node node = document.cloneNode(deep);
[all...]
H A DSOAPDocumentFragment.java163 public Node cloneNode(boolean deep) { argument
164 Node node= documentFragment.cloneNode(deep);
165 soapDocument.registerChildNodes(node, deep);
H A DSOAPPartImpl.java512 boolean deep)
515 return document.importNode(importedNode, deep);
551 public org.w3c.dom.Node cloneNode(boolean deep) { argument
553 return document.cloneNode(deep);
510 importNode( org.w3c.dom.Node importedNode, boolean deep) argument
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/soap/impl/
H A DTextImpl.java203 public Node cloneNode(boolean deep) { argument
204 return domNode.cloneNode(deep);
/openjdk9/jdk/src/java.desktop/share/classes/com/sun/imageio/plugins/tiff/
H A DTIFFFieldNode.java222 public Node cloneNode(boolean deep) { argument
224 return super.cloneNode(deep);
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/
H A DWithObject.java168 * @param deep Whether the search should look up proto chain.
174 protected FindProperty findProperty(final Object key, final boolean deep, final boolean isScope, final ScriptObject start) { argument
182 return super.findProperty(key, deep, isScope, start);

Completed in 217 milliseconds

12