Searched defs:clone (Results 126 - 129 of 129) sorted by relevance

123456

/dalvik/libcore/luni/src/main/java/java/util/
H A DTreeMap.java60 public Object clone() { method in class:TreeMap.MapEntry
62 return super.clone();
140 Node<K, V> clone(Node<K, V> parent) throws CloneNotSupportedException { method in class:TreeMap.Node
141 Node<K, V> clone = (Node<K, V>) super.clone();
142 clone.keys = (K[]) new Object[NODE_SIZE];
143 clone.values = (V[]) new Object[NODE_SIZE];
144 System.arraycopy(keys, 0, clone.keys, 0, keys.length);
145 System.arraycopy(values, 0, clone.values, 0, values.length);
146 clone
1051 public Object clone() { method in class:TreeMap
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java919 * @param clone true if the child should be cloned into the document.
920 * @param cloneDepth if the clone argument is true, specifies that the
921 * clone should include all it's children.
923 public void appendChild(int newChild, boolean clone, boolean cloneDepth); argument
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMDefaultBase.java2231 * @param clone true if the child should be cloned into the document.
2232 * @param cloneDepth if the clone argument is true, specifies that the
2233 * clone should include all it's children.
2235 public void appendChild(int newChild, boolean clone, boolean cloneDepth) argument
H A DDTMDocumentImpl.java2051 * @param clone true if the child should be cloned into the document.
2052 * @param cloneDepth if the clone argument is true, specifies that the
2053 * clone should include all it's children.
2055 public void appendChild(int newChild, boolean clone, boolean cloneDepth) { argument
2057 if (clone || !sameDoc) {

Completed in 96 milliseconds

123456