Searched defs:clone (Results 1 - 25 of 52) 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.java74 protected synchronized WebBackForwardList clone() { method in class:WebBackForwardList
H A DWebHistoryItem.java93 protected synchronized WebHistoryItem clone() { method in class:WebHistoryItem
H A DCookieManager.java33 protected Object clone() throws CloneNotSupportedException { method in class:CookieManager
H A DWebBackForwardListClassic.java130 public synchronized WebBackForwardListClassic clone() { method in class:WebBackForwardListClassic
142 l.mArray.add(mArray.get(i).clone());
H A DWebSyncManager.java75 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 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
354 public FloatKeyframe clone() { method in class:Keyframe.FloatKeyframe
H A DKeyframeSet.java140 public KeyframeSet clone() { method in class:KeyframeSet
145 newKeyframes[i] = keyframes.get(i).clone();
/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 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;
H A DShape.java97 public Shape clone() throws CloneNotSupportedException { method in class:Shape
98 return (Shape) super.clone();
/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/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/
H A DDirectoryWalker.h37 virtual DirectoryWalker* clone() = 0;
91 virtual DirectoryWalker* clone() { function in class:SystemDirectoryWalker
/frameworks/av/media/libstagefright/
H A DMediaBuffer.cpp190 MediaBuffer *MediaBuffer::clone() { function in class:android::MediaBuffer
/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;
/frameworks/base/core/java/com/android/internal/statusbar/
H A DStatusBarIcon.java51 public StatusBarIcon clone() { method in class:StatusBarIcon
H A DStatusBarNotification.java125 public StatusBarNotification clone() { method in class:StatusBarNotification
127 this.score, this.notification.clone(), this.user);
/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
/frameworks/compile/mclinker/lib/MC/
H A DMCLDAttribute.cpp168 AttributeProxy* AttributeProxy::clone() const function in class:AttributeProxy

Completed in 7989 milliseconds

123