HomeSort by relevance Sort by last modified time
    Searched refs:previousAnimator (Results 1 - 5 of 5) sorted by null

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ViewState.java 331 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_ALPHA);
335 if (previousAnimator != null) {
338 PropertyValuesHolder[] values = previousAnimator.getValues();
344 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime());
385 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator);
387 if (properties.delay > 0 && (previousAnimator == null
388 || previousAnimator.getAnimatedFraction() == 0)) {
418 ObjectAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_TRANSLATION_Z);
422 if (previousAnimator != null)
    [all...]
ExpandableViewState.java 241 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_HEIGHT);
245 if (previousAnimator != null) {
248 PropertyValuesHolder[] values = previousAnimator.getValues();
254 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime());
272 long newDuration = cancelAnimatorAndGetNewDuration(properties.duration, previousAnimator);
274 if (properties.delay > 0 && (previousAnimator == null
275 || previousAnimator.getAnimatedFraction() == 0)) {
323 ValueAnimator previousAnimator = getChildTag(child, TAG_ANIMATOR_SHADOW_ALPHA);
327 if (previousAnimator != null)
    [all...]
NotificationStackScrollLayout.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
PropertyAnimator.java 49 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag);
53 if (previousAnimator != null) {
56 PropertyValuesHolder[] values = previousAnimator.getValues();
62 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime());
80 previousAnimator);
82 if (properties.delay > 0 && (previousAnimator == null
83 || previousAnimator.getAnimatedFraction() == 0)) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ScrimController.java 483 ValueAnimator previousAnimator = ViewState.getChildTag(scrim,
486 if (previousAnimator != null) {
488 previousAnimator.cancel();
499 if (previousAnimator != null) {
504 PropertyValuesHolder[] values = previousAnimator.getValues();
511 previousAnimator.setCurrentPlayTime(previousAnimator.getCurrentPlayTime());

Completed in 125 milliseconds