Searched refs:copy (Results 26 - 50 of 82) sorted by relevance

1234

/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/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
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/vm/arch/arm/
H A DCallEABI.S6 * You may obtain a copy of the License at
163 * Make room on the stack for the arguments and copy them over,
182 mov r8, sp @ r8<- sp (arg copy dest)
227 * The stack copy is complete. Grab the first two words off of argv
253 @ all we need to do is copy r0-r1 into the JValue union.
322 beq .Lcopy_done @ zero args, skip stack copy
327 @ Set up to copy from r7 to r8. We copy from the second arg to the
334 @ We need to copy words from [r7] to [r8]. We walk forward through
/dalvik/libcore/luni/src/main/java/java/net/
H A DDatagramSocket.java7 * the License. You may obtain a copy of the License at
342 boolean copy = false;
356 copy = false;
373 copy = true;
388 if (!copy) {
397 } else if (!copy) {
404 if (copy) {
/dalvik/dexlist/
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/libcore/
H A DAndroid.mk5 # You may obtain a copy of the License at
H A DJavaLibrary.mk5 # You may obtain a copy of the License at
109 # whole core.jar in the RI classpath, we copy those classses
126 # Definitions to copy the core-tests runner script.
/dalvik/libdex/
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/
H A DReconfigureDvm.mk5 # You may obtain a copy of the License at
/dalvik/libcore/math/src/main/java/java/math/
H A DPrimality.java7 * the License. You may obtain a copy of the License at
109 BigInt startPoint = ni.copy();
H A DMultiplication.java7 * the License. You may obtain a copy of the License at
96 BigInt bi = val.bigInt.copy();
/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/libcore/luni-kernel/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;
/dalvik/libcore/nio/src/main/java/java/nio/
H A DReadWriteDirectByteBuffer.java7 * the License. You may obtain a copy of the License at
39 static ReadWriteDirectByteBuffer copy(DirectByteBuffer other, method in class:ReadWriteDirectByteBuffer
77 return ReadOnlyDirectByteBuffer.copy(this, mark);
93 return copy(this, mark);
/dalvik/libcore/json/src/test/java/org/json/
H A DJSONObjectTest.java6 * You may obtain a copy of the License at
732 JSONObject copy = new JSONObject(source, new String[] { "a", "c" });
733 assertEquals(2, copy.length());
734 assertEquals(JSONObject.NULL, copy.get("a"));
735 assertEquals(5, copy.get("c"));
736 assertEquals(null, copy.opt("b"));
745 JSONObject copy = new JSONObject(source, new String[]{ "a", "c", "d" });
746 assertEquals(2, copy.length());
747 assertEquals(JSONObject.NULL, copy.get("a"));
748 assertEquals(5, copy
[all...]
/dalvik/dx/src/com/android/dx/ssa/
H A DSsaRenamer.java6 * You may obtain a copy of the License at
179 RegisterSpec[] copy = new RegisterSpec[orig.length];
181 System.arraycopy(orig, 0, copy, 0, orig.length);
183 return copy;
457 * For moves: copy propogate the move if we can, but don't
493 * If we're going to copy-propogate, then the ssa register
536 * Do not copy-propogate, since the two registers have

Completed in 590 milliseconds

1234