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

1234

/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 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 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();
500 node.tmpDependencies = (ArrayList<Dependency>) node.dependencies.clone();
533 (ArrayList<AnimatorListener>) mListeners.clone();
545 (ArrayList<AnimatorListener>) mListeners.clone();
555 public AnimatorSet clone() { method in class:AnimatorSet
556 final AnimatorSet anim = (AnimatorSet) super.clone();
558 * The basic clone() operatio
954 public Node clone() { method in class:AnimatorSet.Node
[all...]
H A DLayoutTransition.java71 * animations is cloned from the original copy and the clone is then populated with the dynamic
248 defaultChangeOut = defaultChangeIn.clone();
670 final Animator anim = baseAnimator.clone();
810 (LinkedHashMap<View, Animator>) currentChangingAnimations.clone();
829 (LinkedHashMap<View, Animator>) currentChangingAnimations.clone();
869 (LinkedHashMap<View, Animator>) currentChangingAnimations.clone();
877 (LinkedHashMap<View, Animator>) currentAppearingAnimations.clone();
885 (LinkedHashMap<View, Animator>) currentDisappearingAnimations.clone();
907 (LinkedHashMap<View, Animator>) currentChangingAnimations.clone();
917 (LinkedHashMap<View, Animator>) currentAppearingAnimations.clone();
[all...]
H A DFloatKeyframeSet.java49 public FloatKeyframeSet clone() { method in class:FloatKeyframeSet
54 newKeyframes[i] = (FloatKeyframe) keyframes.get(i).clone();
H A DIntKeyframeSet.java49 public IntKeyframeSet clone() { method in class:IntKeyframeSet
54 newKeyframes[i] = (IntKeyframe) keyframes.get(i).clone();
/frameworks/base/core/java/android/gesture/
H A DGesturePoint.java48 public Object clone() { method in class:GesturePoint
/frameworks/base/tools/aapt/
H A DDirectoryWalker.h37 virtual DirectoryWalker* clone() = 0;
91 virtual DirectoryWalker* clone() { function in class:SystemDirectoryWalker
/frameworks/compile/slang/
H A Dslang_diagnostic_buffer.cpp82 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/android/webkit/
H A DWebBackForwardList.java160 protected synchronized WebBackForwardList clone() { method in class:WebBackForwardList
172 l.mArray.add(mArray.get(i).clone());
/frameworks/base/core/java/android/nfc/
H A DNdefRecord.java261 mType = type.clone();
262 mId = id.clone();
263 mPayload = payload.clone();
303 return mType.clone();
310 return mId.clone();
317 return mPayload.clone();
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarNotification.java120 public StatusBarNotification clone() { method in class:StatusBarNotification
122 this.uid, this.initialPid, this.notification.clone());
/frameworks/base/core/java/com/google/android/mms/
H A DContentType.java206 return (ArrayList<String>) sSupportedImageTypes.clone();
211 return (ArrayList<String>) sSupportedAudioTypes.clone();
216 return (ArrayList<String>) sSupportedVideoTypes.clone();
221 return (ArrayList<String>) sSupportedContentTypes.clone();
/frameworks/base/include/media/stagefright/
H A DMediaBuffer.h81 // Returns a clone of this MediaBuffer increasing its reference count.
82 // The clone references the same data but has its own range and
84 MediaBuffer *clone();
/frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
H A DForwarderManager.java92 public Object clone() throws CloneNotSupportedException { method in class:ForwarderManager
/frameworks/base/tools/aapt/tests/
H A DMockDirectoryWalker.h73 virtual DirectoryWalker* clone() { function in class:StringDirectoryWalker

Completed in 271 milliseconds

1234