Searched defs:copy (Results 1 - 25 of 27) sorted by relevance

12

/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DGenericSignatureFormatErrorTest.java64 copy(is, fos);
90 private void copy(InputStream is, OutputStream os) { method in class:GenericSignatureFormatErrorTest
/libcore/luni/src/main/java/libcore/io/
H A DStreams.java6 * You may obtain a copy of the License at
178 public static int copy(InputStream in, OutputStream out) throws IOException { method in class:Streams
/libcore/luni/src/main/java/java/nio/
H A DReadOnlyCharArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadOnlyCharArrayBuffer copy(CharArrayBuffer other, int markOfOther) { method in class:ReadOnlyCharArrayBuffer
59 return copy(this, mark);
H A DReadOnlyDoubleArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadOnlyDoubleArrayBuffer copy(DoubleArrayBuffer other, int markOfOther) { method in class:ReadOnlyDoubleArrayBuffer
59 return copy(this, mark);
H A DReadOnlyFloatArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadOnlyFloatArrayBuffer copy(FloatArrayBuffer other, int markOfOther) { method in class:ReadOnlyFloatArrayBuffer
59 return copy(this, mark);
H A DReadOnlyIntArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadOnlyIntArrayBuffer copy(IntArrayBuffer other, int markOfOther) { method in class:ReadOnlyIntArrayBuffer
59 return copy(this, mark);
H A DReadOnlyLongArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadOnlyLongArrayBuffer copy(LongArrayBuffer other, int markOfOther) { method in class:ReadOnlyLongArrayBuffer
59 return copy(this, mark);
H A DReadOnlyShortArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadOnlyShortArrayBuffer copy(ShortArrayBuffer other, int markOfOther) { method in class:ReadOnlyShortArrayBuffer
59 return copy(this, mark);
H A DReadWriteCharArrayBuffer.java7 * the License. You may obtain a copy of the License at
33 static ReadWriteCharArrayBuffer copy(CharArrayBuffer other, int markOfOther) { method in class:ReadWriteCharArrayBuffer
56 return ReadOnlyCharArrayBuffer.copy(this, mark);
70 return copy(this, mark);
H A DReadWriteDoubleArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadWriteDoubleArrayBuffer copy(DoubleArrayBuffer other, int markOfOther) { method in class:ReadWriteDoubleArrayBuffer
57 return ReadOnlyDoubleArrayBuffer.copy(this, mark);
71 return copy(this, mark);
H A DReadWriteFloatArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadWriteFloatArrayBuffer copy(FloatArrayBuffer other, int markOfOther) { method in class:ReadWriteFloatArrayBuffer
57 return ReadOnlyFloatArrayBuffer.copy(this, mark);
71 return copy(this, mark);
H A DReadWriteIntArrayBuffer.java7 * the License. You may obtain a copy of the License at
33 static ReadWriteIntArrayBuffer copy(IntArrayBuffer other, int markOfOther) { method in class:ReadWriteIntArrayBuffer
56 return ReadOnlyIntArrayBuffer.copy(this, mark);
70 return copy(this, mark);
H A DReadWriteLongArrayBuffer.java7 * the License. You may obtain a copy of the License at
33 static ReadWriteLongArrayBuffer copy(LongArrayBuffer other, int markOfOther) { method in class:ReadWriteLongArrayBuffer
56 return ReadOnlyLongArrayBuffer.copy(this, mark);
70 return copy(this, mark);
H A DReadWriteShortArrayBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadWriteShortArrayBuffer copy(ShortArrayBuffer other, int markOfOther) { method in class:ReadWriteShortArrayBuffer
58 return ReadOnlyShortArrayBuffer.copy(this, mark);
72 return copy(this, mark);
H A DCharSequenceAdapter.java7 * the License. You may obtain a copy of the License at
34 static CharSequenceAdapter copy(CharSequenceAdapter other) { method in class:CharSequenceAdapter
61 return copy(this);
145 CharSequenceAdapter result = copy(this);
H A DReadOnlyDirectByteBuffer.java7 * the License. You may obtain a copy of the License at
32 static ReadOnlyDirectByteBuffer copy(DirectByteBuffer other, int markOfOther) { method in class:ReadOnlyDirectByteBuffer
46 return copy(this, mark);
56 return copy(this, mark);
H A DReadOnlyHeapByteBuffer.java7 * the License. You may obtain a copy of the License at
34 static ReadOnlyHeapByteBuffer copy(HeapByteBuffer other, int markOfOther) { method in class:ReadOnlyHeapByteBuffer
49 return ReadOnlyHeapByteBuffer.copy(this, mark);
59 return copy(this, mark);
H A DReadWriteDirectByteBuffer.java7 * the License. You may obtain a copy of the License at
35 static ReadWriteDirectByteBuffer copy(DirectByteBuffer other, int markOfOther) { method in class:ReadWriteDirectByteBuffer
60 return ReadOnlyDirectByteBuffer.copy(this, mark);
74 return copy(this, mark);
H A DReadWriteHeapByteBuffer.java6 * the License. You may obtain a copy of the License at
35 static ReadWriteHeapByteBuffer copy(HeapByteBuffer other, int markOfOther) { method in class:ReadWriteHeapByteBuffer
58 return ReadOnlyHeapByteBuffer.copy(this, mark);
72 return copy(this, mark);
/libcore/support/src/test/java/tests/support/resource/
H A DSupport_Resources.java7 * the License. You may obtain a copy of the License at
134 copy(in, out);
141 private static int copy(InputStream in, OutputStream out) throws IOException { method in class:Support_Resources
/libcore/luni/src/main/java/org/apache/harmony/lang/annotation/
H A DAnnotationMember.java7 * the License. You may obtain a copy of the License at
158 protected AnnotationMember setDefinition(AnnotationMember copy) { argument
159 definingMethod = copy.definingMethod;
160 elementType = copy.elementType;
/libcore/luni/src/main/java/java/math/
H A DBigInt.java6 * You may obtain a copy of the License at
106 BigInt copy() { method in class:BigInt
H A DBigInteger.java7 * the License. You may obtain a copy of the License at
360 BigInt a = bigInt.copy();
374 BigInt a = bigInt.copy();
1192 * Returns a copy of the current instance to achieve immutability
1194 BigInteger copy() { method in class:BigInteger
/libcore/luni/src/main/java/java/util/
H A DTreeMap.java6 * You may obtain a copy of the License at
159 map.root = root != null ? root.copy(null) : null;
747 Node<K, V> copy(Node<K, V> parent) { method in class:TreeMap.Node
750 result.left = left.copy(result);
753 result.right = right.copy(result);
H A DCollections.java7 * the License. You may obtain a copy of the License at
1521 public static <T> void copy(List<? super T> destination, List<? extends T> source) { method in class:Collections

Completed in 652 milliseconds

12