OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mContentAnim
(Results
1 - 2
of
2
) sorted by null
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
Choreographer.java
46
AnimatorSet
mContentAnim
;
102
mContentAnim
= new AnimatorSet();
103
final Builder builder =
mContentAnim
.play(fadeAnim).with(posAnim);
132
mContentAnim
.addListener(this);
134
mContentAnim
.addListener(mListener);
150
mContentAnim
.start();
184
mContentAnim
= null;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
NotificationPanel.java
316
AnimatorSet
mContentAnim
;
353
if (
mContentAnim
!= null &&
mContentAnim
.isRunning()) {
354
mContentAnim
.cancel();
361
mContentAnim
= new AnimatorSet();
362
mContentAnim
366
mContentAnim
.setDuration((DEBUG?10:1)*(appearing ? OPEN_DURATION : CLOSE_DURATION));
367
mContentAnim
.addListener(this);
374
mContentAnim
.start();
392
mContentAnim
= null
[
all
...]
Completed in 27 milliseconds