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

123

/dalvik/dx/
H A DAndroid.mk5 # We use copy-file-to-new-target so that the installed
25 $(copy-file-to-new-target)
45 $(copy-file-to-new-target)
63 $(copy-file-to-new-target)
80 $(copy-file-to-target)
/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
34 $(copy-file-to-new-target)
/dalvik/vm/alloc/
H A DAlloc.cpp6 * You may obtain a copy of the License at
202 * Create a copy of an object, for Object.clone().
225 Object* copy = (Object*)dvmMalloc(size, flags); local
226 if (copy == NULL)
229 DVM_OBJECT_INIT(copy, clazz);
232 memcpy((char*)copy + offset, (char*)obj + offset, size - offset);
236 dvmSetFinalizable(copy);
241 return copy;
/dalvik/dexgen/
H A DAndroid.mk5 # You may obtain a copy of the License at
/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
/dalvik/
H A DAndroid.mk5 # You may obtain a copy of the License at
50 # generate the debug .dex files, with a copy in ./dalvik/DEBUG-FILES.
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DRegisterSpecSet.java6 * You may obtain a copy of the License at
378 * Makes and return a mutable copy of this instance.
380 * @return {@code non-null;} the mutable copy
384 RegisterSpecSet copy = new RegisterSpecSet(len);
389 copy.put(spec);
393 copy.size = size;
395 return copy;
/dalvik/dx/src/com/android/dx/cf/code/
H A DFrame.java6 * You may obtain a copy of the License at
91 * Makes and returns a mutable copy of this instance. The copy
95 * @return {@code non-null;} the copy
97 public Frame copy() { method in class:Frame
98 return new Frame(locals.copy(), stack.copy(), subroutines);
397 ExecutionStack newStack = getStack().copy();
H A DLocalsArray.java6 * You may obtain a copy of the License at
45 * Makes and returns a mutable copy of this instance.
47 * @return {@code non-null;} the copy
49 public abstract LocalsArray copy(); method in class:LocalsArray
152 * the same as this instance, then this is returned (not a copy).
H A DMerger.java6 * You may obtain a copy of the License at
36 * argument, then return the first argument (not a copy).
67 result = locals1.copy();
88 * argument, then return the first argument (not a copy).
119 result = stack1.copy();
H A DLocalsArraySet.java6 * You may obtain a copy of the License at
79 * Constructs an instance which is a copy of another.
81 * @param toCopy {@code non-null;} instance to copy.
86 primary = toCopy.primary.copy();
96 secondaries.add(la.copy());
117 public LocalsArray copy() { method in class:LocalsArraySet
/dalvik/dx/src/com/android/dx/rop/code/
H A DRegisterSpecSet.java6 * You may obtain a copy of the License at
377 * Makes and return a mutable copy of this instance.
379 * @return {@code non-null;} the mutable copy
383 RegisterSpecSet copy = new RegisterSpecSet(len);
388 copy.put(spec);
392 copy.size = size;
394 return copy;
/dalvik/vm/
H A DIndirectRefTable.cpp6 * You may obtain a copy of the License at
311 Object** copy = new Object*[count]; local
313 copy[i] = table_[i].obj;
315 dvmDumpReferenceTableContents(copy, count, descr);
316 delete[] copy;
H A DReconfigureDvm.mk5 # You may obtain a copy of the License at
/dalvik/dexlist/
H A DAndroid.mk5 # You may obtain a copy of the License at
/dalvik/tools/dexdeps/src/
H A DAndroid.mk5 # You may obtain a copy of the License at
/dalvik/vm/mterp/armv5te/
H A DOP_DOUBLE_TO_INT.S22 mov r4, r0 @ save a copy of r0
H A DOP_DOUBLE_TO_LONG.S19 mov r4, r0 @ save a copy of r0
/dalvik/vm/mterp/armv6t2/
H A DOP_DOUBLE_TO_INT.S22 mov r4, r0 @ save a copy of r0
H A DOP_DOUBLE_TO_LONG.S19 mov r4, r0 @ save a copy of r0
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaRenamer.java6 * You may obtain a copy of the License at
199 RegisterSpec[] copy = new RegisterSpec[orig.length];
201 System.arraycopy(orig, 0, copy, 0, orig.length);
203 return copy;
489 * For moves: copy propogate the move if we can, but don't
525 * If we're going to copy-propogate, then the ssa register
570 * Do not copy-propogate, since the two registers have
/dalvik/dexdump/
H A DAndroid.mk5 # You may obtain a copy of the License at
/dalvik/dexopt/
H A DAndroid.mk5 # You may obtain a copy of the License at
/dalvik/dx/tests/115-merge/com/android/dx/merge/
H A DDexMergeTest.java6 * You may obtain a copy of the License at
180 copy(new FileInputStream(dex), jarOut);
186 private void copy(InputStream in, OutputStream out) throws IOException { method in class:DexMergeTest

Completed in 450 milliseconds

123