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

1 2

  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
FragmentAnimationProvider.java 23 * callback. Animators added here will be added to an animation set and played together. This
30 * @param animators A list of animations to which this provider's animations should be added.
32 public abstract void onImeAppearing(@NonNull List<Animator> animators);
36 * @param animators A list of animations to which this provider's animations should be added.
38 public abstract void onImeDisappearing(@NonNull List<Animator> animators);
GuidanceStylist.java 256 public void onImeAppearing(@NonNull List<Animator> animators) {
263 public void onImeDisappearing(@NonNull List<Animator> animators) {
  /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...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
EditorAnimator.java 55 final List<Animator> animators = Lists.newArrayList(); local
61 animators.add(fadeOutAnimator);
64 translateViews(animators, viewsToMove, 0.0f, -offset, 100, 200);
66 mRunner.run(animators, new AnimatorListenerAdapter() {
99 final List<Animator> animators = Lists.newArrayList();
104 translateViews(animators, viewsToMove, -offset, 0.0f, 0, 200);
111 animators.add(fadeInAnimator);
113 mRunner.run(animators);
130 final List<Animator> animators = Lists.newArrayList();
134 translateViews(animators, viewsToMove, -offset, 0.0f, 0, 200)
    [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...]
  /packages/apps/TV/src/com/android/tv/menu/
MenuLayoutManager.java 403 List<Animator> animators = new ArrayList<>(); local
413 animators.add(createAlphaAnimator(oldContentsView, 1.0f, 0.0f, 1.0f, mLinearOutSlowIn)
424 animators.add(createAlphaAnimator(mTempTitleViewForOld, 0.0f,
427 animators.add(createTranslationYAnimator(mTempTitleViewForOld,
430 animators.add(createScaleXAnimator(mTempTitleViewForOld,
432 animators.add(createScaleYAnimator(mTempTitleViewForOld,
434 animators.add(createAlphaAnimator(mTempTitleViewForOld, oldTitleView.getAlpha(),
436 animators.add(createTranslationYAnimator(mTempTitleViewForOld, 0,
453 animators.add(createTranslationYAnimator(oldTitleView, 0.0f,
455 animators.add(createAlphaAnimator(oldTitleView, 1.0f, 0.0f, 1.0f, mLinearOutSlowIn
699 List<Animator> animators = new ArrayList<>(); local
    [all...]
  /frameworks/support/samples/SupportLeanbackDemos/src/com/example/android/leanback/
OnboardingDemoFragment.java 98 ArrayList<Animator> animators = new ArrayList<>(); local
99 animators.add(createFadeInAnimator(mBackgroundView));
103 animators.add(mContentAnimator);
105 set.playTogether(animators);
121 ArrayList<Animator> animators = new ArrayList<>(); local
OnboardingDemoSupportFragment.java 100 ArrayList<Animator> animators = new ArrayList<>(); local
101 animators.add(createFadeInAnimator(mBackgroundView));
105 animators.add(mContentAnimator);
107 set.playTogether(animators);
123 ArrayList<Animator> animators = new ArrayList<>(); local
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
OnboardingFragment.java 455 List<Animator> animators = new ArrayList<>(); local
459 animators.add(animator);
467 animators.add(animator);
475 animators.add(animator);
479 animators.add(customAnimator);
482 mAnimator.playTogether(animators);
582 List<Animator> animators = new ArrayList<>(); local
587 animators.add(createAnimator(mTitleView, false, Gravity.START, 0));
588 animators.add(fadeAnimator = createAnimator(mDescriptionView, false, Gravity.START,
590 animators.add(createAnimator(mTitleView, true, Gravity.END
    [all...]
OnboardingSupportFragment.java 457 List<Animator> animators = new ArrayList<>(); local
461 animators.add(animator);
469 animators.add(animator);
477 animators.add(animator);
481 animators.add(customAnimator);
484 mAnimator.playTogether(animators);
584 List<Animator> animators = new ArrayList<>(); local
589 animators.add(createAnimator(mTitleView, false, Gravity.START, 0));
590 animators.add(fadeAnimator = createAnimator(mDescriptionView, false, Gravity.START,
592 animators.add(createAnimator(mTitleView, true, Gravity.END
    [all...]
GuidedStepFragment.java 1371 ArrayList<Animator> animators = new ArrayList<Animator>(); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AnimatorUtils.java 125 public static void reverse(ValueAnimator... animators) {
126 for (ValueAnimator animator : animators) {
135 public static void cancel(ValueAnimator... animators) {
136 for (ValueAnimator animator : animators) {
  /prebuilts/sdk/current/support/graphics/drawable/libs/
android-support-animatedvectordrawable.jar 
  /frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
AnimatedVectorDrawableCompat.java 115 * @param context the context for creating the animators.
408 " animators");
597 final ArrayList<Animator> animators = mAnimatedVectorState.mAnimators; local
598 final int size = animators.size();
600 final Animator animator = animators.get(i);
609 final ArrayList<Animator> animators = mAnimatedVectorState.mAnimators; local
610 if (animators == null) {
613 final int size = animators.size();
615 final Animator animator = animators.get(i);
634 final ArrayList<Animator> animators = mAnimatedVectorState.mAnimators local
649 final ArrayList<Animator> animators = mAnimatedVectorState.mAnimators; local
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskViewTransform.java 137 public void applyToTaskView(TaskView v, ArrayList<Animator> animators,
163 animators.add(animation.apply(AnimationProps.TRANSLATION_Z, anim));
169 animators.add(animation.apply(AnimationProps.SCALE, anim));
173 animators.add(animation.apply(AnimationProps.ALPHA, anim));
182 animators.add(animation.apply(AnimationProps.BOUNDS, anim));
AnimationProps.java 105 * Creates a new {@link AnimatorSet} that will animate the given animators. Callers need to
106 * manually apply the individual animation properties for each of the animators respectively.
108 public AnimatorSet createAnimator(List<Animator> animators) {
113 anim.playTogether(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();
  /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 80 HashSet<Animator> animators = new HashSet<Animator>(sAnimators.keySet()); local
81 for (Animator a : animators) {
  /external/skia/src/animator/
SkAnimateActive.cpp 28 int animators = fAnimators.count(); local
29 fInterpolators.setCount(animators);
30 memset(fInterpolators.begin(), 0, animators * sizeof(SkOperandInterpolator*));
31 fState.setCount(animators);
33 for (index = 0; index < animators; index++)
36 // for (index = 0; index < animators; index++)
235 int animators = fAnimators.count(); local
236 for (int index = 0; index < animators; index++) {
254 int animators = fAnimators.count(); local
255 int activeTotal = fDrawIndex + animators;
330 int animators = fAnimators.count(); local
    [all...]
  /frameworks/base/core/tests/coretests/src/android/animation/
AnimatorSetActivityTest.java 154 // Put all the animators in a cycle
320 ArrayList<Animator> animators = getAnimatorList();
322 s.playSequentially(animators);
326 ArrayList<MyListener> listeners = new ArrayList<>(animators.size());
327 for (int i = 0; i < animators.size(); i++) {
330 animators.get(i).addListener(listener);
374 final ArrayList<Animator> animators = getAnimatorList();
376 s.playTogether(animators);
381 for (int i = 0; i < animators.size(); i++) {
384 animators.get(i).addListener(listener)
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/list/
SpeedDialFragment.java 393 final ArrayList<Animator> animators = new ArrayList<Animator>();
408 animators.add(ObjectAnimator.ofFloat(
422 animators.add(ObjectAnimator.ofFloat(
430 animators.add(ObjectAnimator.ofFloat(
443 if (animators.size() > 0) {
444 animSet.setDuration(mAnimationDuration).playTogether(animators);
  /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/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/animation/src/android/animation/cts/
AnimatorSetTest.java 82 * Start the animator, and verify the animators are played sequentially in the order that is
86 * @param animators animators that we put in the AnimatorSet, in the order that they'll play
88 private void verifySequentialPlayOrder(final AnimatorSet set, Animator[] animators)
91 final MyListener[] listeners = new MyListener[animators.length];
92 for (int i = 0; i < animators.length; i++) {
106 animators[i].addListener(listeners[i]);
134 // Check that all the animators have finished.

Completed in 3522 milliseconds

1 2