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

  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/notification/
PropertyAnimatorTest.java 41 import com.android.systemui.statusbar.stack.ViewState;
115 assertTrue(ViewState.isAnimating(mView, mProperty));
122 assertFalse(ViewState.isAnimating(mView, mProperty));
130 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()),
140 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationStartTag()),
158 assertTrue(ViewState.isAnimating(mView, mProperty));
159 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()),
171 assertTrue(ViewState.isAnimating(mView, mProperty));
172 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationEndTag()),
184 assertEquals(ViewState.getChildTag(mView, mProperty.getAnimationStartTag())
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
PropertyAnimator.java 30 import com.android.systemui.statusbar.stack.ViewState;
43 Float previousStartValue = ViewState.getChildTag(view, animationStartTag);
44 Float previousEndValue = ViewState.getChildTag(view, animationEndTag);
49 ValueAnimator previousAnimator = ViewState.getChildTag(view, animatorTag);
79 long newDuration = ViewState.cancelAnimatorAndGetNewDuration(properties.duration,
99 ViewState.startAnimator(animator, listener);
  /frameworks/base/services/autofill/java/com/android/server/autofill/
ViewState.java 39 final class ViewState {
48 private static final String TAG = "ViewState";
82 ViewState(Session session, AutofillId id, Listener listener, int state) {
136 return DebugUtils.flagsToString(ViewState.class, "STATE_", mState);
185 return "ViewState: [id=" + id + ", currentValue=" + mCurrentValue
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
ViewState.java 41 public class ViewState {
124 public void copyFrom(ViewState viewState) {
125 alpha = viewState.alpha;
126 xTranslation = viewState.xTranslation;
127 yTranslation = viewState.yTranslation;
128 zTranslation = viewState.zTranslation;
129 gone = viewState.gone;
130 hidden = viewState.hidden;
131 scaleX = viewState.scaleX
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/model/
TaskStack.java 295 public static class ViewState {
296 private static final IntProperty<ViewState> HINT_ALPHA =
297 new IntProperty<ViewState>("drawableAlpha") {
299 public void setValue(ViewState object, int alpha) {
305 public Integer get(ViewState object) {
323 private ViewState(int areaAlpha, int hintAlpha, @TextOrientation int hintOrientation,
433 public final ViewState viewState;
452 this.viewState = new ViewState(dockAreaAlpha, hintTextAlpha, hintTextOrientation
    [all...]

Completed in 93 milliseconds