Searched refs:copy (Results 51 - 75 of 82) sorted by relevance

1234

/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
H A DDocumentImpl.java6 * You may obtain a copy of the License at
122 * Returns a shallow copy of the given node. If the node is an element node,
153 "Cannot copy node of type " + node.getNodeType());
177 * behave differently for clones vs. imports. Clones copy
179 * original document. Imports copy entities by reference,
199 * Returns a copy of the given node or subtree with this document as its
205 * @param deep true to recursively copy any child nodes; false to do no such
209 NodeImpl copy = shallowCopy(operation, node);
214 copy.appendChild(cloneOrImportNode(operation, list.item(i), deep));
218 notifyUserDataHandlers(operation, node, copy);
[all...]
/dalvik/libcore/xml/src/test/java/tests/xml/
H A DDomTest.java6 * You may obtain a copy of the License at
603 DomTest copy = new DomTest();
604 copy.setUp();
608 Node b = copy.allNodes.get(i);
622 DomTest copy = new DomTest();
623 copy.setUp();
624 copy.vitaminc.setTextContent("55%");
627 assertFalse(document.isEqualNode(copy.document));
628 assertFalse(menu.isEqualNode(copy.menu));
629 assertFalse(item.isEqualNode(copy
[all...]
/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/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DHTMLEntities.properties8 # You may obtain a copy of the License at
42 copy=169
/dalvik/libnativehelper/
H A DAndroid.mk5 # You may obtain a copy of the License at
/dalvik/vm/arch/arm/
H A DCallOldABI.S6 * You may obtain a copy of the License at
118 @ While we still have the use of r2/r3, copy excess args from argv
159 @ all we need to do is copy r0-r1 into the JValue union.
/dalvik/dx/src/com/android/dx/cf/code/
H A DExecutionStack.java6 * You may obtain a copy of the License at
55 * Makes and returns a mutable copy of this instance.
57 * @return {@code non-null;} the copy
59 public ExecutionStack copy() { method in class:ExecutionStack
H A DOneLocalsArray.java6 * You may obtain a copy of the License at
50 public OneLocalsArray copy() { method in class:OneLocalsArray
H A DRopper.java6 * You may obtain a copy of the License at
680 * Using a copy of the given frame, simulate each instruction,
683 frame = frame.copy();
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
H A DStringBuffer2Test.java7 * the License. You may obtain a copy of the License at
890 String copy = sb.toString();
891 assertEquals(org, copy);
897 copy = sb.toString();
898 assertEquals(rev, copy);
/dalvik/libcore/math/src/main/java/java/math/
H A DBigInteger.java7 * the License. You may obtain a copy of the License at
446 BigInt a = bigInt.copy();
462 BigInt a = bigInt.copy();
1460 * Returns a copy of the current instance to achieve immutability
1463 BigInteger copy() { method in class:BigInteger
1464 establishOldRepresentation("copy()");
H A DBigInt.java6 * You may obtain a copy of the License at
141 public BigInt copy() { method in class:BigInt
/dalvik/dx/etc/
H A Ddx.bat6 REM You may obtain a copy of the License at
/dalvik/vm/
H A DAndroid.mk5 # You may obtain a copy of the License at
H A DDvm.mk5 # You may obtain a copy of the License at
/dalvik/vm/mterp/armv5te/
H A DOP_FILLED_NEW_ARRAY.S58 @ copy values from registers into the array
H A Dfooter.S435 * Refresh the Jit's cached copy of profile table pointer. This pointer
483 @ prepare to copy args to "outs" area of current frame
509 @ prepare to copy args to "outs" area of current frame
/dalvik/dx/src/com/android/dx/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/vm/compiler/template/
H A Dgen-template.py7 # You may obtain a copy of the License at
260 new_dict = dict.copy()
268 # copy keywords into dictionary
/dalvik/libcore/xml/src/main/native/
H A Dorg_apache_harmony_xml_ExpatParser.cpp6 * You may obtain a copy of the License at
153 // Create a copy of the UTF-8 bytes.
155 char* copy = strdup(bytes); local
156 wrapper->bytes = copy;
170 free(copy);
179 free(copy);
187 free(copy);
395 * @param characters to copy into the buffer
396 * @param length of characters to copy (in bytes)
426 * @param text to copy int
[all...]
/dalvik/libcore/
H A DNativeCode.mk5 # You may obtain a copy of the License at
/dalvik/vm/mterp/
H A Dgen-mterp.py7 # You may obtain a copy of the License at
312 new_dict = dict.copy()
320 # copy keywords into dictionary
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DCollectionsTest.java7 * the License. You may obtain a copy of the License at
343 * @tests java.util.Collections#copy(java.util.List, java.util.List)
348 method = "copy",
352 // Test for method void java.util.Collections.copy(java.util.List,
356 Collections.copy(null, ll);
361 Collections.copy(ll, null);
373 Collections.copy(al, ll);
378 assertTrue("Elements after copied elements affected by copy",
396 Collections.copy(ar2, ar1);
411 Collections.copy(mal
[all...]
/dalvik/vm/mterp/out/
H A DInterpAsm-armv4t.S13 * You may obtain a copy of the License at
252 * You may obtain a copy of the License at
1354 mov r0, r9 @ copy to arg registers
1408 mov r0, r9 @ copy to arg registers
4041 mov r4, r0 @ save a copy of r0
8302 @ copy values from registers into the array
8381 @ copy values from registers into the array
9370 mov r4, r0 @ save a copy of r0
9971 * Refresh the Jit's cached copy of profile table pointer. This pointer
10019 @ prepare to copy arg
[all...]

Completed in 603 milliseconds

1234