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

1234

/frameworks/base/core/java/android/gesture/
H A DGesturePoint.java48 public Object clone() { method in class:GesturePoint
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java59 protected abstract WebBackForwardList clone(); method in class:WebBackForwardList
H A DWebHistoryItem.java78 protected abstract WebHistoryItem clone(); method in class:WebHistoryItem
H A DWebSyncManager.java33 protected Object clone() throws CloneNotSupportedException { method in class:WebSyncManager
/frameworks/base/core/java/android/animation/
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();
H A DKeyframes.java68 Keyframes clone(); method in interface:Keyframes
H A DKeyframeSet.java181 public KeyframeSet clone() { method in class:KeyframeSet
186 newKeyframes[i] = keyframes.get(i).clone();
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DRectShape.java60 public RectShape clone() throws CloneNotSupportedException { method in class:RectShape
61 final RectShape shape = (RectShape) super.clone();
H A DPathShape.java69 public PathShape clone() throws CloneNotSupportedException { method in class:PathShape
70 PathShape shape = (PathShape) 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/tools/aapt/tests/
H A DMockDirectoryWalker.h73 virtual DirectoryWalker* clone() { function in class:StringDirectoryWalker
/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 DIntArray.java134 public IntArray clone() throws CloneNotSupportedException { method in class:IntArray
135 final IntArray clone = (IntArray) super.clone();
136 clone.mValues = mValues.clone();
137 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.java78 public SparseIntArray clone() { method in class:SparseIntArray
79 SparseIntArray clone = null;
81 clone = (SparseIntArray) super.clone();
82 clone.mKeys = mKeys.clone();
83 clone.mValues = mValues.clone();
87 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;
/frameworks/base/tools/aapt/
H A DDirectoryWalker.h37 virtual DirectoryWalker* clone() = 0;
91 virtual DirectoryWalker* clone() { function in class:SystemDirectoryWalker
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DCube.java50 public void clone(Cube src) { method in class:Cube
H A DTriData.java57 public TriData(TriData clone) { argument
59 mVert = Arrays.copyOf(clone.mVert, clone.mVert.length);
60 mIndex = Arrays.copyOf(clone.mIndex, clone.mIndex.length);
/frameworks/av/media/libstagefright/foundation/
H A DMediaBuffer.cpp205 MediaBuffer *MediaBuffer::clone() { function in class:android::MediaBuffer
/frameworks/base/core/java/android/bluetooth/
H A DUidTraffic.java87 public UidTraffic clone() { method in class:UidTraffic
/frameworks/base/core/java/com/android/internal/statusbar/
H A DNotificationVisibility.java59 public NotificationVisibility clone() { method in class:NotificationVisibility
H A DStatusBarIcon.java69 public StatusBarIcon clone() { method in class:StatusBarIcon

Completed in 4569 milliseconds

1234