HomeSort by relevance Sort by last modified time
    Searched defs:animators (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAnimUtils.java 77 HashSet<Animator> animators = new HashSet<Animator>(sAnimators); local
78 for (Animator a : animators) {
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAnimUtils.java 81 HashSet<Animator> animators = new HashSet<Animator>(sAnimators.keySet()); local
82 for (Animator a : animators) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
KeyPreviewChoreographer.java 82 final KeyPreviewAnimators animators = (KeyPreviewAnimators)tag; local
83 animators.startDismiss();
155 final KeyPreviewAnimators animators = new KeyPreviewAnimators( local
157 keyPreviewView.setTag(animators);
158 animators.startShowUp();
  /frameworks/base/libs/hwui/
AnimationContext.cpp 39 AnimatorManager& animators = current->mRenderNode->animators(); local
40 animators.endAllActiveAnimators();
47 if (!node.animators().hasAnimationHandle()) {
72 AnimatorManager& animators = current->mRenderNode->animators(); local
73 animators.pushStaging();
74 animators.animateNoDamage(info);
96 mRenderNode->animators().setAnimationHandle(this);
106 if (mRenderNode->animators().hasAnimators())
    [all...]
RenderNode.h 193 AnimatorManager& animators() { return mAnimatorManager; } function in class:android::uirenderer::RenderNode
  /frameworks/support/design/lollipop/android/support/design/widget/
FloatingActionButtonLollipop.java 122 List<Animator> animators = new ArrayList<>(); local
123 animators.add(ObjectAnimator.ofFloat(mView, "elevation", elevation).setDuration(0));
129 animators.add(ObjectAnimator.ofFloat(mView, View.TRANSLATION_Z,
132 animators.add(ObjectAnimator.ofFloat(mView, View.TRANSLATION_Z, 0f)
134 set.playSequentially(animators.toArray(new ObjectAnimator[0]));
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
Utilities.java 221 ArrayList<Animator> animators = ((AnimatorSet) animator).getChildAnimations(); local
222 for (int i = animators.size() - 1; i >= 0; i--) {
223 removeAnimationListenersRecursive(animators.get(i));
  /cts/tests/tests/transition/src/android/transition/cts/
TransitionTest.java 451 assertFalse(transition.animators.isEmpty());
452 Animator animator = transition.animators.get(redSquare);
508 Animator redSquareAnimator = transition.animators.get(redSquare);
509 Animator greenSquareAnimator = transition.animators.get(greenSquare);
540 Animator animator = transition.animators.get(redSquare);
641 public HashMap<View, Animator> animators = new HashMap<>(); field in class:TransitionTest.CaptureAnimatorTransition
659 animators.put(view, animator);
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
OnboardingDemoFragment.java 99 ArrayList<Animator> animators = new ArrayList<>(); local
100 animators.add(createFadeInAnimator(mBackgroundView));
104 animators.add(mContentAnimator);
106 set.playTogether(animators);
122 ArrayList<Animator> animators = new ArrayList<>(); local
OnboardingDemoSupportFragment.java 102 ArrayList<Animator> animators = new ArrayList<>(); local
103 animators.add(createFadeInAnimator(mBackgroundView));
107 animators.add(mContentAnimator);
109 set.playTogether(animators);
125 ArrayList<Animator> animators = new ArrayList<>(); local
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 56 final List<Animator> animators = Lists.newArrayList(); local
62 animators.add(fadeOutAnimator);
65 translateViews(animators, viewsToMove, 0.0f, -offset, 100, 200);
67 mRunner.run(animators, new AnimatorListenerAdapter() {
100 final List<Animator> animators = Lists.newArrayList();
105 translateViews(animators, viewsToMove, -offset, 0.0f, 0, 200);
112 animators.add(fadeInAnimator);
114 mRunner.run(animators);
131 final List<Animator> animators = Lists.newArrayList();
135 translateViews(animators, viewsToMove, -offset, 0.0f, 0, 200)
    [all...]
  /packages/apps/ManagedProvisioning/src/com/android/managedprovisioning/preprovisioning/anim/
BenefitsAnimation.java 184 * <p>Inflates animators required to animate text headers' part of the whole animation.
191 Animator[] animators = new Animator[ID_ANIMATION_TARGET.length]; local
194 animators[i] = AnimatorInflater.loadAnimator(mActivity, instance[0]);
195 animators[i].setTarget(mActivity.findViewById(instance[1]));
199 animatorSet.playTogether(animators);
  /packages/apps/TV/src/com/android/tv/onboarding/
WelcomeFragment.java 644 List<Animator> animators = new ArrayList<>(); local
652 animators.add(animator);
660 animators.add(animator);
668 animators.add(animator);
674 animators.add(animator);
682 animators.add(animator);
684 set.playTogether(animators);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
OnboardingFragment.java 730 List<Animator> animators = new ArrayList<>(); local
734 animators.add(animator);
740 animators.add(animator);
747 animators.add(animator);
753 animators.add(customAnimator);
757 if (animators.isEmpty()) {
761 mAnimator.playTogether(animators);
894 List<Animator> animators = new ArrayList<>(); local
    [all...]
OnboardingSupportFragment.java 727 List<Animator> animators = new ArrayList<>(); local
731 animators.add(animator);
737 animators.add(animator);
744 animators.add(animator);
750 animators.add(customAnimator);
754 if (animators.isEmpty()) {
758 mAnimator.playTogether(animators);
891 List<Animator> animators = new ArrayList<>(); local
    [all...]
GuidedStepFragment.java 1389 ArrayList<Animator> animators = new ArrayList<Animator>(); local
    [all...]
GuidedStepSupportFragment.java 1386 ArrayList<Animator> animators = new ArrayList<Animator>(); local
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
RippleComponent.java 312 final ArrayList<RenderNodeAnimator> animators = mAnimators; local
313 final int N = animators.size();
315 final RenderNodeAnimator anim = animators.get(i);
322 final ArrayList<RenderNodeAnimator> animators = mAnimators; local
323 final int N = animators.size();
325 final RenderNodeAnimator anim = animators.get(i);
331 final ArrayList<RenderNodeAnimator> animators = mAnimators; local
332 final int N = animators.size();
334 final RenderNodeAnimator anim = animators.get(i);
340 final ArrayList<RenderNodeAnimator> animators = mAnimators local
    [all...]
AnimatedVectorDrawable.java 308 * to inflate animators if applyTheme() doesn't get called.
699 /** Animators that require a theme before inflation. */
702 /** Fully inflated animators awaiting cloning into an AnimatorSet. */
705 /** Map of animators to their target object names */
786 * Prepares a local set of mutable animators based on the constant
789 * If there are any pending uninflated animators, attempts to inflate
792 * @param animatorSet the animator set to which the animators should
795 * animators, or {@code null} if not available
799 // Check for uninflated animators. We can remove this after we add
802 // Attempt to load animators without applying a theme
1290 ArrayList<Animator> animators = set.getChildAnimations(); local
    [all...]
  /packages/apps/TV/src/com/android/tv/menu/
MenuLayoutManager.java 426 List<Animator> animators = new ArrayList<>(); local
436 animators.add(createAlphaAnimator(oldContentsView, 1.0f, 0.0f, 1.0f, mLinearOutSlowIn)
447 animators.add(createAlphaAnimator(mTempTitleViewForOld, 0.0f,
450 animators.add(createTranslationYAnimator(mTempTitleViewForOld,
453 animators.add(createScaleXAnimator(mTempTitleViewForOld,
455 animators.add(createScaleYAnimator(mTempTitleViewForOld,
457 animators.add(createAlphaAnimator(mTempTitleViewForOld, oldTitleView.getAlpha(),
459 animators.add(createTranslationYAnimator(mTempTitleViewForOld, 0,
476 animators.add(createTranslationYAnimator(oldTitleView, 0.0f,
478 animators.add(createAlphaAnimator(oldTitleView, 1.0f, 0.0f, 1.0f, mLinearOutSlowIn
719 List<Animator> animators = new ArrayList<>(); local
    [all...]
  /cts/tests/tests/animation/src/android/animation/cts/
AnimatorSetTest.java 99 List<Animator> animators = new ArrayList<Animator>(); local
100 animators.add(xAnimator);
101 animators.add(yAnimator);
103 mAnimatorSet.playSequentially(animators);
116 * Start the animator, and verify the animators are played sequentially in the order that is
120 * @param animators animators that we put in the AnimatorSet, in the order that they'll play
122 private void verifySequentialPlayOrder(final AnimatorSet set, Animator[] animators)
125 final MyListener[] listeners = new MyListener[animators.length];
126 for (int i = 0; i < animators.length; i++)
545 Animator[] animators = new Animator[10]; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskStack.java 384 ArrayList<Animator> animators = new ArrayList<>(); local
391 animators.add(anim);
404 animators.add(anim);
418 animators.add(anim);
423 if (!animators.isEmpty()) {
425 mDockAreaOverlayAnimator.playTogether(animators);
    [all...]
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
WearableListView.java 506 List<Animator> animators = new ArrayList<Animator>(); local
509 startScrollAnimation(animators, scrollToMiddle, FLIP_ANIMATION_DURATION_MS);
512 private void startScrollAnimation(List<Animator> animators, int scroll, long duration) {
513 startScrollAnimation(animators, scroll, duration, 0);
516 private void startScrollAnimation(List<Animator> animators, int scroll, long duration,
518 startScrollAnimation(animators, scroll, duration, delay, null);
526 private void startScrollAnimation(List<Animator> animators, int scroll, long duration,
536 if (animators != null) {
537 animators.add(scrollAnimator);
539 animatorSet.playTogether(animators);
    [all...]
  /frameworks/base/tools/aapt/
Resource.cpp 1294 sp<ResourceTypeSet> animators; local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
ExpandingEntryCardView.java 838 final List<Animator> animators = new ArrayList<Animator>(views.size()); local
    [all...]

Completed in 859 milliseconds

1 2