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

123

/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.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/animation/
H A DFloatKeyframeSet.java50 public FloatKeyframeSet clone() { method in class:FloatKeyframeSet
55 newKeyframes[i] = (FloatKeyframe) keyframes.get(i).clone();
H A DIntKeyframeSet.java50 public IntKeyframeSet clone() { method in class:IntKeyframeSet
55 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/compile/slang/
H A Dslang_diagnostic_buffer.cpp81 DiagnosticBuffer::clone(clang::DiagnosticsEngine &Diags) const { function in class:slang::DiagnosticBuffer
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebBackForwardListChromium.java92 * See {@link android.webkit.WebBackForwardList#clone}.
95 protected synchronized WebBackForwardListChromium clone() { method in class:WebBackForwardListChromium
99 list.add(mHistroryItemList.get(i).clone());
H A DWebHistoryItemChromium.java92 * See {@link android.webkit.WebHistoryItem#clone}.
95 public synchronized WebHistoryItemChromium clone() { method in class:WebHistoryItemChromium
/frameworks/base/core/java/android/util/
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 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 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 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;
/frameworks/base/tools/aapt/
H A DDirectoryWalker.h37 virtual DirectoryWalker* clone() = 0;
91 virtual DirectoryWalker* clone() { function in class:SystemDirectoryWalker
/frameworks/av/media/libstagefright/
H A DMediaBuffer.cpp189 MediaBuffer *MediaBuffer::clone() { function in class:android::MediaBuffer
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIcon.java51 public StatusBarIcon clone() { method in class:StatusBarIcon

Completed in 4094 milliseconds

123