Home | History | Annotate | Download | only in drawable

Lines Matching refs:mSet

1084         // mSet is only initialized in init(). So we need to check whether it is null before any
1086 private AnimatorSet mSet = null;
1088 // Caching the listener in the case when listener operation is called before the mSet is
1099 if (mSet != null) {
1106 mSet = set.clone();
1107 mIsInfinite = mSet.getTotalDuration() == Animator.DURATION_INFINITE;
1112 mSet.addListener(mListenerArray.get(i));
1123 if (mSet == null || mSet.isStarted()) {
1126 mSet.start();
1132 if (mSet == null) {
1135 mSet.end();
1140 if (mSet == null) {
1144 mSet.cancel();
1149 if (mSet == null) {
1152 mSet.reverse();
1158 return mSet != null && mSet.canReverse();
1163 if (mSet == null) {
1169 mSet.addListener(listener);
1175 if (mSet == null) {
1181 mSet.removeListener(listener);
1187 if (mSet != null && mSet.isStarted()) {
1194 return mSet != null && mSet.isStarted();
1199 return mSet != null && mSet.isRunning();
1209 if (mSet == null) {
1212 mSet.pause();
1217 if (mSet == null) {
1220 mSet.resume();