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

1234567

/frameworks/base/libs/hwui/
H A DTreeInfo.h69 explicit TreeInfo(TraversalMode mode, const TreeInfo& clone) argument
72 , runAnimations(clone.runAnimations)
73 , damageAccumulator(clone.damageAccumulator)
74 , renderState(clone.renderState)
75 , renderer(clone.renderer)
76 , errorHandler(clone.errorHandler)
77 , canvasContext(clone.canvasContext)
/frameworks/base/core/java/android/animation/
H A DStateListAnimator.java135 public StateListAnimator clone() { method in class:StateListAnimator
137 StateListAnimator clone = (StateListAnimator) super.clone();
138 clone.mTuples = new ArrayList<Tuple>(mTuples.size());
139 clone.mLastMatch = null;
140 clone.mRunningAnimator = null;
141 clone.mViewRef = null;
142 clone.mAnimatorListener = null;
143 clone.initAnimatorListener();
147 final Animator animatorClone = tuple.mAnimator.clone();
[all...]
H A DKeyframes.java68 Keyframes clone(); method in interface:Keyframes
H A DPathKeyframes.java133 public Keyframes clone() { method in class:PathKeyframes
134 Keyframes clone = null;
136 clone = (Keyframes) super.clone();
138 return clone;
225 public Keyframes clone() { method in class:PathKeyframes.SimpleKeyframes
226 Keyframes clone = null;
228 clone = (Keyframes) super.clone();
230 return clone;
[all...]
H A DAnimator.java111 (ArrayList<AnimatorPauseListener>) mPauseListeners.clone();
135 (ArrayList<AnimatorPauseListener>) mPauseListeners.clone();
361 * @see #clone()
369 public Animator clone() { method in class:Animator
371 final Animator anim = (Animator) super.clone();
558 final Animator clone = mAnimator.clone();
559 clone.mConstantState = this;
560 return clone;
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java60 protected abstract WebBackForwardList clone(); method in class:WebBackForwardList
H A DWebHistoryItem.java78 protected abstract WebHistoryItem clone(); method in class:WebHistoryItem
H A DWebSyncManager.java38 protected Object clone() throws CloneNotSupportedException { method in class:WebSyncManager
/frameworks/base/core/java/android/util/
H A DLongArray.java114 public LongArray clone() { method in class:LongArray
115 LongArray clone = null;
117 clone = (LongArray) super.clone();
118 clone.mValues = mValues.clone();
122 return clone;
H A DLongSparseLongArray.java78 public LongSparseLongArray clone() { method in class:LongSparseLongArray
79 LongSparseLongArray clone = null;
81 clone = (LongSparseLongArray) super.clone();
82 clone.mKeys = mKeys.clone();
83 clone.mValues = mValues.clone();
87 return clone;
H A DSparseIntArray.java76 public SparseIntArray clone() { method in class:SparseIntArray
77 SparseIntArray clone = null;
79 clone = (SparseIntArray) super.clone();
80 clone.mKeys = mKeys.clone();
81 clone.mValues = mValues.clone();
85 return clone;
H A DSparseLongArray.java76 public SparseLongArray clone() { method in class:SparseLongArray
77 SparseLongArray clone = null;
79 clone = (SparseLongArray) super.clone();
80 clone.mKeys = mKeys.clone();
81 clone.mValues = mValues.clone();
85 return clone;
H A DIntArray.java115 public IntArray clone() throws CloneNotSupportedException { method in class:IntArray
116 final IntArray clone = (IntArray) super.clone();
117 clone.mValues = mValues.clone();
118 return clone;
H A DSparseBooleanArray.java73 public SparseBooleanArray clone() { method in class:SparseBooleanArray
74 SparseBooleanArray clone = null;
76 clone = (SparseBooleanArray) super.clone();
77 clone.mKeys = mKeys.clone();
78 clone.mValues = mValues.clone();
82 return clone;
H A DLongSparseArray.java87 public LongSparseArray<E> clone() { method in class:LongSparseArray
88 LongSparseArray<E> clone = null;
90 clone = (LongSparseArray<E>) super.clone();
91 clone.mKeys = mKeys.clone();
92 clone.mValues = mValues.clone();
96 return clone;
H A DSparseArray.java87 public SparseArray<E> clone() { method in class:SparseArray
88 SparseArray<E> clone = null;
90 clone = (SparseArray<E>) super.clone();
91 clone.mKeys = mKeys.clone();
92 clone.mValues = mValues.clone();
96 return clone;
/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 DPathShape.java69 public PathShape clone() throws CloneNotSupportedException { method in class:PathShape
70 PathShape shape = (PathShape) super.clone();
H A DRectShape.java60 public RectShape clone() throws CloneNotSupportedException { method in class:RectShape
61 final RectShape shape = (RectShape) super.clone();
H A DShape.java105 public Shape clone() throws CloneNotSupportedException { method in class:Shape
106 return (Shape) super.clone();
H A DRoundRectShape.java130 public RoundRectShape clone() throws CloneNotSupportedException { method in class:RoundRectShape
131 RoundRectShape shape = (RoundRectShape) super.clone();
132 shape.mOuterRadii = mOuterRadii != null ? mOuterRadii.clone() : null;
133 shape.mInnerRadii = mInnerRadii != null ? mInnerRadii.clone() : null;
/frameworks/base/core/java/android/gesture/
H A DGesturePoint.java48 public Object clone() { method in class:GesturePoint
/frameworks/base/services/core/java/com/android/server/pm/
H A DGrantedPermissions.java39 gids = base.gids.clone();
/frameworks/support/v4/java/android/support/v4/util/
H A DLongSparseArray.java79 public LongSparseArray<E> clone() { method in class:LongSparseArray
80 LongSparseArray<E> clone = null;
82 clone = (LongSparseArray<E>) super.clone();
83 clone.mKeys = mKeys.clone();
84 clone.mValues = mValues.clone();
88 return clone;
H A DSparseArrayCompat.java59 public SparseArrayCompat<E> clone() { method in class:SparseArrayCompat
60 SparseArrayCompat<E> clone = null;
62 clone = (SparseArrayCompat<E>) super.clone();
63 clone.mKeys = mKeys.clone();
64 clone.mValues = mValues.clone();
68 return clone;

Completed in 2059 milliseconds

1234567