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

/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/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/java/nio/
H A DCharArrayBuffer.java7 * the License. You may obtain a copy of the License at
42 private static CharArrayBuffer copy(CharArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:CharArrayBuffer
51 return copy(this, mark, true);
66 return copy(this, mark, isReadOnly);
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 DDoubleArrayBuffer.java7 * the License. You may obtain a copy of the License at
42 private static DoubleArrayBuffer copy(DoubleArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:DoubleArrayBuffer
51 return copy(this, mark, true);
66 return copy(this, mark, isReadOnly);
H A DFloatArrayBuffer.java7 * the License. You may obtain a copy of the License at
42 private static FloatArrayBuffer copy(FloatArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:FloatArrayBuffer
51 return copy(this, mark, true);
67 return copy(this, mark, isReadOnly);
H A DIntArrayBuffer.java7 * the License. You may obtain a copy of the License at
42 private static IntArrayBuffer copy(IntArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:IntArrayBuffer
51 return copy(this, mark, true);
66 return copy(this, mark, isReadOnly);
H A DLongArrayBuffer.java7 * the License. You may obtain a copy of the License at
42 private static LongArrayBuffer copy(LongArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:LongArrayBuffer
51 return copy(this, mark, true);
66 return copy(this, mark, isReadOnly);
H A DShortArrayBuffer.java7 * the License. You may obtain a copy of the License at
42 private static ShortArrayBuffer copy(ShortArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:ShortArrayBuffer
51 return copy(this, mark, true);
66 return copy(this, mark, isReadOnly);
H A DByteArrayBuffer.java7 * the License. You may obtain a copy of the License at
51 private static ByteArrayBuffer copy(ByteArrayBuffer other, int markOfOther, boolean isReadOnly) { method in class:ByteArrayBuffer
60 return copy(this, mark, true);
75 return copy(this, mark, isReadOnly);
H A DDirectByteBuffer.java7 * the License. You may obtain a copy of the License at
51 private static DirectByteBuffer copy(DirectByteBuffer other, int markOfOther, boolean isReadOnly) { method in class:DirectByteBuffer
60 return copy(this, mark, true);
75 return copy(this, mark, isReadOnly);
/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
/libcore/luni/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp6 * You may obtain a copy of the License at
262 // Create a copy of the UTF-8 bytes.
264 char* copy = new char[strlen(bytes) + 1]; local
265 if (copy == NULL) {
269 strcpy(copy, bytes);
270 wrapper->bytes = copy;
449 * @param text to copy into the buffer
450 * @param length of text to copy (in bytes)
592 // Disallow copy and assignment.
H A Dorg_apache_harmony_xnet_provider_jsse_NativeCrypto.cpp6 * You may obtain a copy of the License at
2868 EVP_MD_CTX* copy = EVP_MD_CTX_create(); local
2869 if (copy == NULL) {
2870 jniThrowOutOfMemoryError(env, "Unable to allocate copy of EVP_MD_CTX");
2874 EVP_MD_CTX_init(copy);
2875 int result = EVP_MD_CTX_copy_ex(copy, ctx);
2877 EVP_MD_CTX_destroy(copy);
2878 jniThrowRuntimeException(env, "Unable to copy EVP_MD_CTX");
2883 JNI_TRACE("NativeCrypto_EVP_MD_CTX_copy(%p) => %p", ctx, copy);
2884 return reinterpret_cast<uintptr_t>(copy);
[all...]
/libcore/benchmarks/libs/
H A Dcaliper.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/caliper/ com/google/caliper/AllocationMeasurer ...

Completed in 187 milliseconds