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

/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
/dalvik/dx/src/com/android/dx/cf/code/
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 DExecutionStack.java6 * You may obtain a copy of the License at
61 * Makes and returns a mutable copy of this instance.
63 * @return {@code non-null;} the copy
65 public ExecutionStack copy() { method in class:ExecutionStack
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 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
H A DOneLocalsArray.java6 * You may obtain a copy of the License at
50 public OneLocalsArray copy() { method in class:OneLocalsArray
/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;
/dalvik/dexgen/src/com/android/dexgen/rop/code/
H A DInsn.java6 * You may obtain a copy of the License at
252 * Returns an exact copy of this Insn
256 public Insn copy() { method in class:Insn
/dalvik/dx/src/com/android/dx/rop/code/
H A DInsn.java6 * You may obtain a copy of the License at
250 * Returns an exact copy of this Insn
254 public Insn copy() { method in class:Insn
/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/vm/compiler/codegen/arm/Thumb/
H A DFactory.cpp6 * You may obtain a copy of the License at
43 * a high register, build constant into a low register and copy.
934 ArmLIR *copy = genRegCopyNoInsert(cUnit, r14lr, r5FP); local
935 dvmCompilerInsertLIRAfter((LIR *) popForLR, (LIR *) copy);
942 dvmCompilerInsertLIRAfter((LIR *) copy, (LIR *) popFP);
/dalvik/dx/etc/
H A Djasmin.jarMETA-INF/ META-INF/MANIFEST.MF jas/ jas/AnnotDefAttr.class AnnotDefAttr.java package jas ...

Completed in 254 milliseconds