Searched defs:clone (Results 1 - 7 of 7) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/program/
H A DMBranchInsn.java29 * Clone this MBranchInsn, and clone the wrapped Instruction.
31 public MBranchInsn clone() { method in class:MBranchInsn
33 newInsn.insn = insn.clone();
H A DMInsnWithData.java29 * Clone this MInsnWithData, and clone the wrapped Instruction.
31 public MInsnWithData clone() { method in class:MInsnWithData
33 newInsn.insn = insn.clone();
H A DMSwitchInsn.java36 * Clone this MSwitchInsn, and clone the wrapped Instruction.
38 public MSwitchInsn clone() { method in class:MSwitchInsn
40 newInsn.insn = insn.clone();
H A DMInsn.java44 * Clone this MInsn, and clone the wrapped Instruction.
46 public MInsn clone() { method in class:MInsn
48 newInsn.insn = insn.clone();
/art/test/964-default-iface-init-generated/util-src/
H A Dgenerate_java.py272 def clone(self): member in class:TestInterface
277 return TestInterface(tuple(map(lambda a: a.clone(), self.ifaces)), self.default)
353 return tuple(a.clone() for a in l)
/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DInstruction.java88 public Instruction clone() { method in class:Instruction
/art/runtime/mirror/
H A Dobject_test.cc102 Object* clone = a1->Clone(soa.Self()); local
103 EXPECT_EQ(s1, clone->SizeOf());
104 EXPECT_TRUE(clone->GetClass() == a1->GetClass());

Completed in 145 milliseconds