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

  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
AnimatedImageView.java 31 boolean mAttached;
43 if (mAttached && mAnim != null) {
72 mAttached = true;
81 mAttached = false;
CarrierLabel.java 40 private boolean mAttached;
59 if (!mAttached) {
60 mAttached = true;
70 if (mAttached) {
72 mAttached = false;
Clock.java 51 private boolean mAttached;
78 if (!mAttached) {
79 mAttached = true;
103 if (mAttached) {
105 mAttached = false;
  /frameworks/base/test-runner/src/android/test/
ApplicationTestCase.java 72 private boolean mAttached = false;
104 mAttached = true;
117 if (!mAttached) {
ActivityUnitTestCase.java 83 private boolean mAttached = false;
127 if (!mAttached) {
154 mAttached = true;
  /packages/apps/DeskClock/src/com/android/deskclock/
DigitalClock.java 50 private boolean mAttached;
134 if (mAttached) return;
135 mAttached = true;
158 if (!mAttached) return;
159 mAttached = false;
  /frameworks/base/core/java/android/widget/
AnalogClock.java 50 private boolean mAttached;
98 if (!mAttached) {
99 mAttached = true;
122 if (mAttached) {
124 mAttached = false;
  /frameworks/base/core/java/com/android/internal/widget/
DigitalClock.java 52 private int mAttached = 0; // for debugging - tells us whether attach/detach is unbalanced
164 mAttached++;
190 mAttached--;

Completed in 293 milliseconds