Home | History | Annotate | Download | only in conversation

Lines Matching refs:animate

37     private Pair<Boolean /* show */, Boolean /* animate */> mPendingShow;
52 final boolean animate = mPendingShow.second;
58 show, animate);
80 public boolean show(boolean animate) {
82 return showHide(true, animate);
86 public boolean hide(boolean animate) {
87 return showHide(false, animate);
90 private boolean showHide(final boolean show, final boolean animate) {
96 mSimSelectorView.showOrHide(show, animate);
99 mPendingShow = Pair.create(show, animate);