Searched refs:animators (Results 1 - 21 of 21) sorted by relevance

/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DFragmentAnimationProvider.java30 * @param animators A list of animations to which this provider's animations should be added.
32 public abstract void onImeAppearing(@NonNull List<Animator> animators); argument
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); argument
H A DGuidanceStylist.java256 public void onImeAppearing(@NonNull List<Animator> animators) { argument
263 public void onImeDisappearing(@NonNull List<Animator> animators) { argument
H A DGuidedActionsStylist.java1202 public void onImeAppearing(@NonNull List<Animator> animators) { argument
1209 public void onImeDisappearing(@NonNull List<Animator> animators) { argument
/frameworks/base/libs/hwui/
H A DAnimationContext.cpp39 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()
[all...]
H A DRenderNode.h210 AnimatorManager& animators() { return mAnimatorManager; } function in class:android::uirenderer::RenderNode
/frameworks/base/graphics/java/android/graphics/drawable/
H A DRippleComponent.java312 final ArrayList<RenderNodeAnimator> animators = mAnimators;
313 final int N = animators.size();
315 final RenderNodeAnimator anim = animators.get(i);
322 final ArrayList<RenderNodeAnimator> animators = mAnimators;
323 final int N = animators.size();
325 final RenderNodeAnimator anim = animators.get(i);
331 final ArrayList<RenderNodeAnimator> animators = mAnimators;
332 final int N = animators.size();
334 final RenderNodeAnimator anim = animators.get(i);
340 final ArrayList<RenderNodeAnimator> animators
[all...]
H A DAnimatedVectorDrawable.java164 * to inflate animators if applyTheme() doesn't get called.
468 /** Fully inflated animators awaiting cloning into an AnimatorSet. */
471 /** Map of animators to their target object names */
551 * Prepares a local set of mutable animators based on the constant
554 * If there are any pending uninflated animators, attempts to inflate
557 * @param animatorSet the animator set to which the animators should
560 * animators, or {@code null} if not available
564 // Check for uninflated animators. We can remove this after we add
567 // Attempt to load animators without applying a theme.
571 Log.e(LOGTAG, "Failed to load animators
[all...]
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DOnboardingFragment.java455 List<Animator> animators = new ArrayList<>();
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<>();
587 animators.add(createAnimator(mTitleView, false, Gravity.START, 0));
588 animators.add(fadeAnimator = createAnimator(mDescriptionView, false, Gravity.START,
590 animators
[all...]
H A DOnboardingSupportFragment.java457 List<Animator> animators = new ArrayList<>();
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<>();
589 animators.add(createAnimator(mTitleView, false, Gravity.START, 0));
590 animators.add(fadeAnimator = createAnimator(mDescriptionView, false, Gravity.START,
592 animators
[all...]
H A DGuidedStepFragment.java853 * transition that controls multiple animators (e.g. slide and fade animation in one Transition
1356 ArrayList<Animator> animators = new ArrayList<Animator>();
1358 mGuidanceStylist.onImeAppearing(animators);
1359 mActionsStylist.onImeAppearing(animators);
1360 mButtonActionsStylist.onImeAppearing(animators);
1362 mGuidanceStylist.onImeDisappearing(animators);
1363 mActionsStylist.onImeDisappearing(animators);
1364 mButtonActionsStylist.onImeDisappearing(animators);
1367 set.playTogether(animators);
H A DGuidedStepSupportFragment.java855 * transition that controls multiple animators (e.g. slide and fade animation in one Transition
1358 ArrayList<Animator> animators = new ArrayList<Animator>();
1360 mGuidanceStylist.onImeAppearing(animators);
1361 mActionsStylist.onImeAppearing(animators);
1362 mButtonActionsStylist.onImeAppearing(animators);
1364 mGuidanceStylist.onImeDisappearing(animators);
1365 mActionsStylist.onImeDisappearing(animators);
1366 mButtonActionsStylist.onImeDisappearing(animators);
1369 set.playTogether(animators);
/frameworks/support/graphics/drawable/animated/src/android/support/graphics/drawable/
H A DAnimatedVectorDrawableCompat.java114 * @param context the context for creating the animators.
381 " animators");
569 final ArrayList<Animator> animators = mAnimatedVectorState.mAnimators;
570 final int size = animators.size();
572 final Animator animator = animators.get(i);
581 final ArrayList<Animator> animators = mAnimatedVectorState.mAnimators;
582 if (animators == null) {
585 final int size = animators.size();
587 final Animator animator = animators.get(i);
606 final ArrayList<Animator> animators
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
H A DTaskViewTransform.java137 public void applyToTaskView(TaskView v, ArrayList<Animator> animators, argument
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));
H A DAnimationProps.java105 * 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) { argument
113 anim.playTogether(animators);
/frameworks/base/core/tests/coretests/src/android/animation/
H A DAnimatorSetActivityTest.java154 // 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
618 onlyContains(ArrayList<Animator> animators, AnimatorSet... sets) argument
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DUtilities.java221 ArrayList<Animator> animators = ((AnimatorSet) animator).getChildAnimations();
222 for (int i = animators.size() - 1; i >= 0; i--) {
223 removeAnimationListenersRecursive(animators.get(i));
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
H A DTaskStack.java373 ArrayList<Animator> animators = new ArrayList<>();
380 animators.add(anim);
393 animators.add(anim);
407 animators.add(anim);
412 if (!animators.isEmpty()) {
414 mDockAreaOverlayAnimator.playTogether(animators);
/frameworks/support/v4/java/android/support/v4/widget/
H A DMaterialProgressDrawable.java92 /** The list of animators operating on this drawable. */
266 final ArrayList<Animation> animators = mAnimators;
267 final int N = animators.size();
269 final Animation animator = animators.get(i);
/frameworks/base/tools/aapt/
H A DResource.cpp1212 sp<ResourceTypeSet> animators; local
1247 !applyFileOverlay(bundle, assets, &animators, "animator") ||
1302 if (animators != NULL) {
1303 err = makeFileResources(bundle, assets, &table, animators, "animator");
1426 if (animators != NULL) {
1427 ResourceDirIterator it(animators, String8("animator"));
/frameworks/base/core/jni/
H A Dandroid_view_RenderNode.cpp529 renderNode->animators().endAllStagingAnimators();
H A Dandroid_view_ThreadedRenderer.cpp192 renderNode->animators().endAllStagingAnimators();

Completed in 388 milliseconds