Searched refs:copy (Results 1 - 25 of 82) sorted by relevance

1234

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
H A DJava6Arrays.java7 * the License. You may obtain a copy of the License at
51 T[] copy = (T[]) Array.newInstance(original.getClass().getComponentType(), length);
52 System.arraycopy(original, start, copy, 0, copyLength);
53 return copy;
67 T[] copy = (T[]) Array.newInstance(newType.getComponentType(),
69 System.arraycopy(original, start, copy, 0, copyLength);
70 return copy;
/dalvik/dx/
H A DAndroid.mk5 # We use copy-file-to-new-target so that the installed
21 $(copy-file-to-new-target)
38 $(copy-file-to-new-target)
54 $(copy-file-to-target)
/dalvik/vm/alloc/
H A DAlloc.c6 * You may obtain a copy of the License at
189 * Create a copy of an object, for Object.clone().
196 Object* copy; local
216 copy = dvmMalloc(size, flags);
217 if (copy == NULL)
220 hprofFillInStackTrace(copy);
224 memcpy(copy, obj, size);
225 DVM_LOCK_INIT(&copy->lock);
227 //LOGV("CloneObject: %p->%p %s (%d)\n", obj, copy, obj->clazz->name, size);
233 return copy;
[all...]
/dalvik/libcore/nio/src/main/java/java/nio/
H A DReadOnlyDirectByteBuffer.java7 * the License. You may obtain a copy of the License at
36 static ReadOnlyDirectByteBuffer copy(DirectByteBuffer other, int markOfOther) { method in class:ReadOnlyDirectByteBuffer
58 return copy(this, mark);
68 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
50 return copy(this, mark);
60 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);
71 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, method in class:ReadWriteDoubleArrayBuffer
59 return ReadOnlyDoubleArrayBuffer.copy(this, mark);
74 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, method in class:ReadWriteFloatArrayBuffer
59 return ReadOnlyFloatArrayBuffer.copy(this, mark);
74 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);
71 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);
71 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, method in class:ReadWriteShortArrayBuffer
59 return ReadOnlyShortArrayBuffer.copy(this, mark);
74 return copy(this, mark);
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, method in class:ReadOnlyDoubleArrayBuffer
61 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 DCharSequenceAdapter.java7 * the License. You may obtain a copy of the License at
32 static CharSequenceAdapter copy(CharSequenceAdapter other) { method in class:CharSequenceAdapter
59 return copy(this);
166 CharSequenceAdapter result = copy(this);
H A DReadWriteHeapByteBuffer.java6 * the License. You may obtain a copy of the License at
32 static ReadWriteHeapByteBuffer copy(HeapByteBuffer other, int markOfOther) { method in class:ReadWriteHeapByteBuffer
56 return ReadOnlyHeapByteBuffer.copy(this, mark);
71 return copy(this, mark);
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXPolicyNode.java131 return copy();
134 public PKIXPolicyNode copy() method in class:PKIXPolicyNode
161 PKIXPolicyNode _child = ((PKIXPolicyNode)_iter.next()).copy();
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DGenericSignatureFormatErrorTest.java86 copy(is, fos);
112 private void copy(InputStream is, OutputStream os) { method in class:GenericSignatureFormatErrorTest
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DCharInfo.java8 * You may obtain a copy of the License at
153 * making a mutable copy, {@link #mutableCopyOf(CharInfo)}.
500 // Put the common copy of charInfo in the cache, but return
501 // a copy of it.
531 * Create a mutable copy of the cached one.
536 CharInfo copy = new CharInfo();
539 System.arraycopy(charInfo.array_of_bits,0,copy.array_of_bits,0,max);
541 copy.firstWordNotUsed = charInfo.firstWordNotUsed;
544 System.arraycopy(charInfo.shouldMapAttrChar_ASCII,0,copy.shouldMapAttrChar_ASCII,0,max);
547 System.arraycopy(charInfo.shouldMapTextChar_ASCII,0,copy
[all...]
/dalvik/tools/dexdeps/
H A DAndroid.mk5 # You may obtain a copy of the License at
17 # We use copy-file-to-new-target so that the installed
33 $(copy-file-to-new-target)
/dalvik/tools/gdbjithelper/
H A DAndroid.mk5 # You may obtain a copy of the License at
/dalvik/tools/hprof-conv/
H A DAndroid.mk5 # You may obtain a copy of the License at

Completed in 392 milliseconds

1234