Searched defs:clone (Results 51 - 75 of 95) sorted by relevance

1234

/frameworks/support/v4/java/android/support/v4/util/
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;
/frameworks/av/media/libmedia/
H A DMediaScanner.cpp240 MediaAlbumArt *MediaAlbumArt::clone() { function in class:android::MediaAlbumArt
/frameworks/base/core/java/android/animation/
H A DAnimator.java117 (ArrayList<AnimatorPauseListener>) mPauseListeners.clone();
141 (ArrayList<AnimatorPauseListener>) mPauseListeners.clone();
388 * @see #clone()
396 public Animator clone() { method in class:Animator
398 final Animator anim = (Animator) super.clone();
589 final Animator clone = mAnimator.clone();
590 clone.mConstantState = this;
591 return clone;
H A DObjectAnimator.java994 public ObjectAnimator clone() { method in class:ObjectAnimator
995 final ObjectAnimator anim = (ObjectAnimator) super.clone();
H A DAnimatorSet.java60 * NOTE: This object implements the clone() method, making a deep copy of any referenced
62 * to clone() to make deep copies of them.
357 tmpListeners = (ArrayList<AnimatorListener>) mListeners.clone();
395 (ArrayList<AnimatorListener>) mListeners.clone();
648 (ArrayList<AnimatorListener>) mListeners.clone();
682 public AnimatorSet clone() { method in class:AnimatorSet
683 final AnimatorSet anim = (AnimatorSet) super.clone();
685 * The basic clone() operation copies all items. This doesn't work very well for
687 * that may not apply. What we need to do now is put the clone in an uninitialized
689 * manually, as we clone eac
1157 public Node clone() { method in class:AnimatorSet.Node
[all...]
H A DPropertyValuesHolder.java940 public PropertyValuesHolder clone() { method in class:PropertyValuesHolder
942 PropertyValuesHolder newPVH = (PropertyValuesHolder) super.clone();
945 newPVH.mKeyframes = mKeyframes.clone();
1197 public IntPropertyValuesHolder clone() { method in class:PropertyValuesHolder.IntPropertyValuesHolder
1198 IntPropertyValuesHolder newPVH = (IntPropertyValuesHolder) super.clone();
1335 public FloatPropertyValuesHolder clone() { method in class:PropertyValuesHolder.FloatPropertyValuesHolder
1336 FloatPropertyValuesHolder newPVH = (FloatPropertyValuesHolder) super.clone();
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetProviderInfo.java339 public AppWidgetProviderInfo clone() { method in class:AppWidgetProviderInfo
341 that.provider = this.provider == null ? null : this.provider.clone();
349 that.configure = this.configure == null ? null : this.configure.clone();
/frameworks/base/core/java/android/service/notification/
H A DStatusBarNotification.java217 public StatusBarNotification clone() { method in class:StatusBarNotification
220 this.notification.clone(), this.user, this.overrideGroupKey, this.postTime);
/frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
H A DUploadedTexture.java105 public BorderKey clone() { method in class:UploadedTexture.BorderKey
107 return (BorderKey) super.clone();
129 sBorderLines.put(key.clone(), bitmap);
/frameworks/base/services/core/java/com/android/server/pm/
H A DUserRestrictionsUtils.java214 public static @NonNull Bundle clone(@Nullable Bundle in) { method in class:UserRestrictionsUtils
/frameworks/base/tools/aapt2/
H A DResourceValues.cpp42 RawString* RawString::clone(StringPool* newPool) const { function in class:aapt::RawString
76 Reference* Reference::clone(StringPool* /*newPool*/) const { function in class:aapt::Reference
106 Id* Id::clone(StringPool* /*newPool*/) const { function in class:aapt::Id
136 String* String::clone(StringPool* newPool) const { function in class:aapt::String
168 StyledString* StyledString::clone(StringPool* newPool) const { function in class:aapt::StyledString
192 FileReference* FileReference::clone(StringPool* newPool) const { function in class:aapt::FileReference
218 BinaryPrimitive* BinaryPrimitive::clone(StringPool* /*newPool*/) const { function in class:aapt::BinaryPrimitive
256 Attribute* Attribute::clone(StringPool* /*newPool*/) const { function in class:aapt::Attribute
448 Style* Style::clone(StringPool* newPool) const { function in class:aapt::Style
457 std::unique_ptr<Item>(entry.value->clone(newPoo
487 Array* Array::clone(StringPool* newPool) const { function in class:aapt::Array
503 Plural* Plural::clone(StringPool* newPool) const { function in class:aapt::Plural
524 Styleable* Styleable::clone(StringPool* /*newPool*/) const { function in class:aapt::Styleable
[all...]
/frameworks/rs/java/tests/VrDemo/src/com/example/android/rs/vr/engine/
H A DTransform.java36 public void clone(Transform src) { method in class:Transform
38 mViewMatrix.clone(src.mViewMatrix);
H A DViewMatrix.java46 public void clone(ViewMatrix src) { method in class:ViewMatrix
87 mStartMatrix.clone(src.mStartMatrix);
89 mQ.clone(src.mQ);
90 super.clone(src);
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/transition/
H A DFadeAndShortSlide.java306 public Transition clone() { method in class:FadeAndShortSlide
307 FadeAndShortSlide clone = null;
308 clone = (FadeAndShortSlide) super.clone();
309 clone.mFade = (Visibility) mFade.clone();
310 return clone;
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DPositionMap.java61 public PositionMap<E> clone() { method in class:PositionMap
62 PositionMap<E> clone = null;
64 clone = (PositionMap<E>) super.clone();
65 clone.mKeys = mKeys.clone();
66 clone.mValues = mValues.clone();
70 return clone;
/frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
H A DBaseGridLayoutManagerTest.java127 protected Object clone() throws CloneNotSupportedException { method in class:BaseGridLayoutManagerTest.Config
128 return super.clone();
H A DBaseLinearLayoutManagerTest.java74 Config newConfig = (Config) config.clone();
317 public Object clone() throws CloneNotSupportedException { method in class:BaseLinearLayoutManagerTest.Config
318 return super.clone();
/frameworks/base/core/java/android/os/
H A DBundle.java194 public Object clone() { method in class:Bundle
/frameworks/base/core/java/android/transition/
H A DTransitionSet.java548 public TransitionSet clone() { method in class:TransitionSet
549 TransitionSet clone = (TransitionSet) super.clone();
550 clone.mTransitions = new ArrayList<Transition>();
553 clone.addTransition((Transition) mTransitions.get(i).clone());
555 return clone;
/frameworks/base/core/java/android/view/animation/
H A DAnimationSet.java126 protected AnimationSet clone() throws CloneNotSupportedException { method in class:AnimationSet
127 final AnimationSet animation = (AnimationSet) super.clone();
135 animation.mAnimations.add(animations.get(i).clone());
/frameworks/data-binding/internal-prebuilts/com/android/databinding/baseLibrary/1.0-rc3/
H A DbaseLibrary-1.0-rc3.jar ... CallbackRegistry clone public volatile synthetic java.lang.Object clone () throws java.lang.CloneNotSupportedException } android/databinding/Observable$ ...
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-baseLibrary.jar ... CallbackRegistry clone public volatile synthetic java.lang.Object clone () throws java.lang.CloneNotSupportedException } android/databinding/Observable$ ...
/frameworks/base/core/java/android/content/pm/
H A DShortcutInfo.java182 mCategories = clone(b.mCategories);
196 private <T> ArraySet<T> clone(Set<T> source) { method in class:ShortcutInfo
234 mCategories = clone(source.mCategories);
251 public ShortcutInfo clone(@CloneFlags int cloneFlags) { method in class:ShortcutInfo
285 mCategories = clone(source.mCategories);
896 mCategories = clone(categories);
/frameworks/base/core/java/android/net/
H A DNetworkStats.java255 public NetworkStats clone() { method in class:NetworkStats
256 final NetworkStats clone = new NetworkStats(elapsedRealtime, size);
260 clone.addValues(entry);
262 return clone;
/frameworks/base/core/java/android/os/storage/
H A DVolumeInfo.java478 public VolumeInfo clone() { method in class:VolumeInfo

Completed in 860 milliseconds

1234