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

12

/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)
62 $(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
199 * Create a copy of an object, for Object.clone().
222 Object* copy = (Object*)dvmMalloc(size, flags); local
223 if (copy == NULL)
226 DVM_OBJECT_INIT(copy, clazz);
229 memcpy((char*)copy + offset, (char*)obj + offset, size - offset);
233 dvmSetFinalizable(copy);
238 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
52 # 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
46 * Makes and returns a mutable copy of this instance.
48 * @return {@code non-null;} the copy
50 public abstract LocalsArray copy(); method in class:LocalsArray
153 * 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
81 * Constructs an instance which is a copy of another.
83 * @param toCopy {@code non-null;} instance to copy.
88 primary = toCopy.primary.copy();
98 secondaries.add(la.copy());
119 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
200 RegisterSpec[] copy = new RegisterSpec[orig.length];
202 System.arraycopy(orig, 0, copy, 0, orig.length);
204 return copy;
490 * For moves: copy propogate the move if we can, but don't
526 * If we're going to copy-propogate, then the ssa register
571 * Do not copy-propogate, since the two registers have
/dalvik/dalvikvm/
H A DAndroid.mk5 # You may obtain a copy of the License at
/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

Completed in 836 milliseconds

12