Home
last modified time | relevance | path

Searched defs:clone (Results 1 – 25 of 224) sorted by relevance

123456789

/aosp12/hardware/interfaces/neuralnetworks/aidl/utils/src/
H A DUtils.cpp44 nn::GeneralResult<std::vector<Type>> clone(const std::vector<Type>& arguments) { in clone() function
48 nn::GeneralResult<ndk::ScopedFileDescriptor> clone(const ndk::ScopedFileDescriptor& fd) { in clone() function
53 nn::GeneralResult<common::NativeHandle> clone(const common::NativeHandle& handle) { in clone() function
62 nn::GeneralResult<Memory> clone(const Memory& memory) { in clone() function
96 nn::GeneralResult<RequestMemoryPool> clone(const RequestMemoryPool& requestPool) { in clone() function
111 nn::GeneralResult<Request> clone(const Request& request) { in clone() function
119 nn::GeneralResult<Model> clone(const Model& model) { in clone() function
/aosp12/frameworks/base/core/tests/coretests/src/android/view/inputmethod/
H A DInputMethodInfoTest.java46 final InputMethodInfo clone = cloneViaParcel(imi); in testEqualsAndHashCode() local
59 final InputMethodInfo clone = cloneViaParcel(imi); in testBooleanAttributes_DefaultValues() local
71 final InputMethodInfo clone = cloneViaParcel(imi); in testSupportsSwitchingToNextInputMethod() local
82 final InputMethodInfo clone = cloneViaParcel(imi); in testInlineSuggestionsEnabled() local
93 final InputMethodInfo clone = cloneViaParcel(imi); in testIsVrOnly() local
/aosp12/frameworks/base/core/tests/coretests/src/android/app/assist/
H A DAssistStructureTest.java113 AssistStructure clone = cloneThroughParcel(structure); in testParcelizationForAutofill_oneSmallView() local
133 AssistStructure clone = cloneThroughParcel(structure); in testParcelizationForAutofill_manySmallViews() local
187 AssistStructure clone = cloneThroughParcel(structure); in testParcelizationForAutofill_oneBigView() local
243 ViewNodeParcelable clone = cloneThroughParcel(viewNodeParcelable); in testViewNodeParcelableForAutofill() local
310 ViewNodeParcelable clone = ViewNodeParcelable.CREATOR.createFromParcel(parcel); in cloneThroughParcel() local
328 AssistStructure clone = AssistStructure.CREATOR.createFromParcel(parcel); in cloneThroughParcel() local
/aosp12/frameworks/base/packages/BackupEncryption/test/robolectric/src/com/android/server/testing/
H A DCryptoTestUtils.java125 public static ChunksMetadataProto.ChunkListing clone( in clone() method in CryptoTestUtils
145 public static ChunksMetadataProto.Chunk clone(ChunksMetadataProto.Chunk original) { in clone() method in CryptoTestUtils
149 public static ChunksMetadataProto.ChunksMetadata clone( in clone() method in CryptoTestUtils
162 public static ChunksMetadataProto.ChunkOrdering clone( in clone() method in CryptoTestUtils
164 ChunksMetadataProto.ChunkOrdering clone = new ChunksMetadataProto.ChunkOrdering(); in clone() local
/aosp12/frameworks/base/core/tests/coretests/src/android/view/autofill/
H A DAutofillIdTest.java41 final AutofillId clone = cloneThroughParcel(id); in testNonVirtual() local
55 final AutofillId clone = cloneThroughParcel(id); in testVirtual_int() local
74 final AutofillId clone = cloneThroughParcel(id); in testVirtual_long() local
92 final AutofillId clone = cloneThroughParcel(id); in testVirtual_parentObjectConstructor() local
109 final AutofillId clone = cloneThroughParcel(id); in testVirtual_withSession() local
326 AutofillId clone = AutofillId.CREATOR.createFromParcel(parcel); in cloneThroughParcel() local
/aosp12/system/bt/gd/rust/hci/src/
H A Dcontroller_facade.rs42 let clone = self.clone(); in get_mac_address() localVariable
51 let mut clone = self.clone(); in write_local_name() localVariable
61 let mut clone = self.clone(); in get_local_name() localVariable
/aosp12/frameworks/base/core/java/android/animation/
H A DKeyframe.java257 public abstract Keyframe clone(); in clone() method in Keyframe
286 public ObjectKeyframe clone() { in clone() method in Keyframe.ObjectKeyframe
332 public IntKeyframe clone() { in clone() method in Keyframe.IntKeyframe
379 public FloatKeyframe clone() { in clone() method in Keyframe.FloatKeyframe
H A DStateListAnimator.java136 public StateListAnimator clone() { in clone() method in StateListAnimator
138 StateListAnimator clone = (StateListAnimator) super.clone(); in clone() local
328 final StateListAnimator clone = mAnimator.clone(); in newInstance() local
H A DPathKeyframes.java130 public Keyframes clone() { in clone() method in PathKeyframes
131 Keyframes clone = null; in clone() local
/aosp12/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
H A DContentCaptureEventTest.java163 final ContentCaptureEvent clone = cloneThroughParcel(event); in testSessionStarted_throughParcel() local
203 final ContentCaptureEvent clone = cloneThroughParcel(event); in testSessionFinished_throughParcel() local
232 final ContentCaptureEvent clone = cloneThroughParcel(event); in testContextUpdated_throughParcel() local
328 ContentCaptureEvent clone = ContentCaptureEvent.CREATOR.createFromParcel(parcel); in cloneThroughParcel() local
/aosp12/frameworks/base/core/tests/coretests/src/android/widget/
H A DRemoteViewsTest.java84 RemoteViews clone = original.clone(); in clone_doesNotCopyBitmap() local
95 RemoteViews clone = original.clone(); in clone_originalCanStillBeApplied() local
104 RemoteViews clone = original.clone(); in clone_clones() local
120 RemoteViews clone = child.clone(); in clone_child_fails() local
137 RemoteViews clone = original.clone().clone(); in clone_chained() local
/aosp12/frameworks/base/core/java/android/util/
H A DSparseDoubleArray.java68 public SparseDoubleArray clone() { in clone() method in SparseDoubleArray
69 SparseDoubleArray clone = null; in clone() local
H A DSparseLongArray.java76 public SparseLongArray clone() { in clone() method in SparseLongArray
77 SparseLongArray clone = null; in clone() local
/aosp12/hardware/interfaces/identity/support/include/cppbor/
H A Dcppbor.h238 virtual std::unique_ptr<Item> clone() const override { return std::make_unique<Uint>(mValue); } in clone() function
274 virtual std::unique_ptr<Item> clone() const override { return std::make_unique<Nint>(mValue); } in clone() function
327 virtual std::unique_ptr<Item> clone() const override { return std::make_unique<Bstr>(mValue); } in clone() function
377 virtual std::unique_ptr<Item> clone() const override { return std::make_unique<Tstr>(mValue); } in clone() function
561 virtual std::unique_ptr<Item> clone() const override { in clone() function
621 virtual std::unique_ptr<Item> clone() const override { return std::make_unique<Bool>(mValue); } in clone() function
649 virtual std::unique_ptr<Item> clone() const override { return std::make_unique<Null>(); } in clone() function
/aosp12/art/test/158-app-image-class-table/src/
H A DTestImplementation.java18 public Object clone() { in clone() method in TestImplementation
/aosp12/packages/services/Car/tests/BugReportApp/libs/
H A Dgoogle-api-services-storage-v1-rev158-1.25.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META- ...
/aosp12/art/tools/dexfuzz/src/dexfuzz/program/
H A DMBranchInsn.java31 public MBranchInsn clone() { in clone() method in MBranchInsn
H A DMInsnWithData.java31 public MInsnWithData clone() { in clone() method in MInsnWithData
H A DMSwitchInsn.java38 public MSwitchInsn clone() { in clone() method in MSwitchInsn
H A DMInsn.java46 public MInsn clone() { in clone() method in MInsn
/aosp12/frameworks/compile/mclinker/include/mcld/Target/
H A DELFDynamic.h62 Entry* clone() const { return new Entry(); } in clone() function
93 Entry* clone() const { return new Entry(); } in clone() function
/aosp12/frameworks/base/services/core/java/com/android/server/
H A DBundleUtils.java45 public static @NonNull Bundle clone(@Nullable Bundle in) { in clone() method in BundleUtils
/aosp12/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java63 protected abstract WebBackForwardList clone(); in clone() method in WebBackForwardList
H A DWebHistoryItem.java77 protected abstract WebHistoryItem clone(); in clone() method in WebHistoryItem
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/collection/
H A DSuppressedAttachState.kt47 fun clone(other: SuppressedAttachState) { regex

123456789