Searched refs:clone (Results 1 - 25 of 111) sorted by relevance

12345

/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DContainerEncryptionParamsTest.java97 new String(ENC_ALGORITHM), new IvParameterSpec(IV_BYTES.clone()),
98 new SecretKeySpec(ENC_KEY_BYTES.clone(), "RAW"), new String(MAC_ALGORITHM), null,
99 new SecretKeySpec(MAC_KEY_BYTES.clone(), "RAW"), MAC_TAG, AUTHENTICATED_START,
111 "AES-256/CBC/PKCS7Padding"), new IvParameterSpec(IV_BYTES.clone()),
112 new SecretKeySpec(ENC_KEY_BYTES.clone(), "RAW"), new String(MAC_ALGORITHM), null,
113 new SecretKeySpec(MAC_KEY_BYTES.clone(), "RAW"), MAC_TAG, AUTHENTICATED_START,
126 new SecretKeySpec(ENC_KEY_BYTES.clone(), "RAW"), new String(MAC_ALGORITHM), null,
127 new SecretKeySpec(MAC_KEY_BYTES.clone(), "RAW"), MAC_TAG, AUTHENTICATED_START,
139 new String(ENC_ALGORITHM), new IvParameterSpec(IV_BYTES.clone()),
141 new SecretKeySpec(MAC_KEY_BYTES.clone(), "RA
[all...]
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DRectShape.java55 public RectShape clone() throws CloneNotSupportedException { method in class:RectShape
56 final RectShape shape = (RectShape) super.clone();
H A DShape.java97 public Shape clone() throws CloneNotSupportedException { method in class:Shape
98 return (Shape) super.clone();
H A DPathShape.java69 public PathShape clone() throws CloneNotSupportedException { method in class:PathShape
70 PathShape shape = (PathShape) super.clone();
H A DRoundRectShape.java107 public RoundRectShape clone() throws CloneNotSupportedException { method in class:RoundRectShape
108 RoundRectShape shape = (RoundRectShape) super.clone();
109 shape.mOuterRadii = mOuterRadii != null ? mOuterRadii.clone() : null;
110 shape.mInnerRadii = mInnerRadii != null ? mInnerRadii.clone() : null;
/frameworks/base/services/java/com/android/server/pm/
H A DGrantedPermissions.java37 grantedPermissions = (HashSet<String>) base.grantedPermissions.clone();
40 gids = base.gids.clone();
/frameworks/base/core/java/android/util/
H A DSparseBooleanArray.java49 public SparseBooleanArray clone() { method in class:SparseBooleanArray
50 SparseBooleanArray clone = null;
52 clone = (SparseBooleanArray) super.clone();
53 clone.mKeys = mKeys.clone();
54 clone.mValues = mValues.clone();
58 return clone;
H A DSparseIntArray.java53 public SparseIntArray clone() { method in class:SparseIntArray
54 SparseIntArray clone = null;
56 clone = (SparseIntArray) super.clone();
57 clone.mKeys = mKeys.clone();
58 clone.mValues = mValues.clone();
62 return clone;
H A DSparseLongArray.java55 public SparseLongArray clone() { method in class:SparseLongArray
56 SparseLongArray clone = null;
58 clone = (SparseLongArray) super.clone();
59 clone.mKeys = mKeys.clone();
60 clone.mValues = mValues.clone();
64 return clone;
H A DLongSparseArray.java56 public LongSparseArray<E> clone() { method in class:LongSparseArray
57 LongSparseArray<E> clone = null;
59 clone = (LongSparseArray<E>) super.clone();
60 clone.mKeys = mKeys.clone();
61 clone.mValues = mValues.clone();
65 return clone;
H A DSparseArray.java56 public SparseArray<E> clone() { method in class:SparseArray
57 SparseArray<E> clone = null;
59 clone = (SparseArray<E>) super.clone();
60 clone.mKeys = mKeys.clone();
61 clone.mValues = mValues.clone();
65 return clone;
/frameworks/base/core/java/android/animation/
H A DKeyframe.java234 public abstract Keyframe clone(); method in class:Keyframe
263 public ObjectKeyframe clone() { method in class:Keyframe.ObjectKeyframe
308 public IntKeyframe clone() { method in class:Keyframe.IntKeyframe
352 public FloatKeyframe clone() { method in class:Keyframe.FloatKeyframe
H A DAnimator.java188 public Animator clone() { method in class:Animator
190 final Animator anim = (Animator) super.clone();
H A DLayoutTransition.java71 * animations is cloned from the original copy and the clone is then populated with the dynamic
279 defaultChangeOut = defaultChangeIn.clone();
282 defaultChange = defaultChangeIn.clone();
843 final Animator anim = baseAnimator.clone();
947 (ArrayList<TransitionListener>) mListeners.clone();
968 (ArrayList<TransitionListener>) mListeners.clone();
996 (LinkedHashMap<View, Animator>) currentChangingAnimations.clone();
1015 (LinkedHashMap<View, Animator>) currentChangingAnimations.clone();
1057 (LinkedHashMap<View, Animator>) currentChangingAnimations.clone();
1065 (LinkedHashMap<View, Animator>) currentAppearingAnimations.clone();
[all...]
H A DAnimatorSet.java54 * NOTE: This object implements the clone() method, making a deep copy of any referenced
56 * to clone() to make deep copies of them.
293 tmpListeners = (ArrayList<AnimatorListener>) mListeners.clone();
346 (ArrayList<AnimatorListener>) mListeners.clone();
504 node.tmpDependencies = (ArrayList<Dependency>) node.dependencies.clone();
537 (ArrayList<AnimatorListener>) mListeners.clone();
549 (ArrayList<AnimatorListener>) mListeners.clone();
559 public AnimatorSet clone() { method in class:AnimatorSet
560 final AnimatorSet anim = (AnimatorSet) super.clone();
562 * The basic clone() operatio
958 public Node clone() { method in class:AnimatorSet.Node
[all...]
/frameworks/base/core/java/android/gesture/
H A DGesturePoint.java48 public Object clone() { method in class:GesturePoint
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java54 public LongSparseArray<E> clone() { method in class:LongSparseArray
55 LongSparseArray<E> clone = null;
57 clone = (LongSparseArray<E>) super.clone();
58 clone.mKeys = mKeys.clone();
59 clone.mValues = mValues.clone();
63 return clone;
/frameworks/base/tools/aapt/
H A DDirectoryWalker.h37 virtual DirectoryWalker* clone() = 0;
91 virtual DirectoryWalker* clone() { function in class:SystemDirectoryWalker
/frameworks/base/core/java/android/webkit/
H A DCookieManager.java33 protected Object clone() throws CloneNotSupportedException { method in class:CookieManager
H A DWebBackForwardList.java160 protected synchronized WebBackForwardList clone() { method in class:WebBackForwardList
172 l.mArray.add(mArray.get(i).clone());
/frameworks/compile/mclinker/include/mcld/LD/
H A DResolver.h86 Resolver* clone() const { function in class:mcld::Resolver
/frameworks/compile/slang/
H A Dslang_diagnostic_buffer.cpp81 DiagnosticBuffer::clone(clang::DiagnosticsEngine &Diags) const { function in class:slang::DiagnosticBuffer
H A Dslang_diagnostic_buffer.h49 clone(clang::DiagnosticsEngine &Diags) const;
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarNotification.java117 public StatusBarNotification clone() { method in class:StatusBarNotification
119 this.uid, this.initialPid, this.score, this.notification.clone());
/frameworks/compile/mclinker/include/mcld/Target/
H A DELFDynamic.h42 virtual EntryIF* clone() const = 0;
69 Entry* clone() const function in class:mcld::elf_dynamic::Entry

Completed in 652 milliseconds

12345