Home
last modified time | relevance | path

Searched refs:mAttached (Results 1 – 13 of 13) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DCarrierLabel.java41 private boolean mAttached; field in CarrierLabel
60 if (!mAttached) { in onAttachedToWindow()
61 mAttached = true; in onAttachedToWindow()
71 if (mAttached) { in onDetachedFromWindow()
73 mAttached = false; in onDetachedFromWindow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DAnimatedImageView.java31 boolean mAttached; field in AnimatedImageView
43 if (mAttached && mAnim != null) { in updateAnim()
72 mAttached = true; in onAttachedToWindow()
81 mAttached = false; in onDetachedFromWindow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
DCompatModePanel.java41 private boolean mAttached = false; field in CompatModePanel
67 if (mAttached) { in onDetachedFromWindow()
68 mAttached = false; in onDetachedFromWindow()
75 if (!mAttached) { in onAttachedToWindow()
76 mAttached = true; in onAttachedToWindow()
DInputMethodsPanel.java72 private boolean mAttached = false; field in InputMethodsPanel
124 if (mAttached) { in onDetachedFromWindow()
126 mAttached = false; in onDetachedFromWindow()
133 if (!mAttached) { in onAttachedToWindow()
135 mAttached = true; in onAttachedToWindow()
/frameworks/base/test-runner/src/android/test/
DApplicationTestCase.java72 private boolean mAttached = false; field in ApplicationTestCase
104 mAttached = true; in setupApplication()
117 if (!mAttached) { in createApplication()
DActivityUnitTestCase.java82 private boolean mAttached = false; field in ActivityUnitTestCase
126 if (!mAttached) { in startActivity()
153 mAttached = true; in startActivity()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DClock.java51 private boolean mAttached; field in Clock
78 if (!mAttached) { in onAttachedToWindow()
79 mAttached = true; in onAttachedToWindow()
103 if (mAttached) { in onDetachedFromWindow()
105 mAttached = false; in onDetachedFromWindow()
/frameworks/base/core/java/android/widget/
DAnalogClock.java51 private boolean mAttached; field in AnalogClock
99 if (!mAttached) { in onAttachedToWindow()
100 mAttached = true; in onAttachedToWindow()
123 if (mAttached) { in onDetachedFromWindow()
125 mAttached = false; in onDetachedFromWindow()
DProgressBar.java226 private boolean mAttached; field in ProgressBar
680 if (mAttached && !mRefreshIsPosted) { in refreshProgress()
1174 mAttached = true; in onAttachedToWindow()
1194 mAttached = false; in onDetachedFromWindow()
/frameworks/base/core/java/com/android/internal/widget/
DTransportControlView.java76 private boolean mAttached; field in TransportControlView
228 if (!mAttached) { in onAttachedToWindow()
232 mAttached = true; in onAttachedToWindow()
238 if (mAttached) { in onDetachedFromWindow()
242 mAttached = false; in onDetachedFromWindow()
269 if (mAttached) { in updateMetadata()
DDigitalClock.java56 private int mAttached = 0; // for debugging - tells us whether attach/detach is unbalanced field in DigitalClock
186 mAttached++; in onAttachedToWindow()
212 mAttached--; in onDetachedFromWindow()
/frameworks/native/libs/gui/
DSurfaceTexture.cpp123 mAttached(true) in SurfaceTexture()
194 if (!mAttached) { in updateTexImage()
341 if (!mAttached) { in detachFromContext()
383 mAttached = false; in detachFromContext()
398 if (mAttached) { in attachToContext()
456 mAttached = true; in attachToContext()
/frameworks/native/include/gui/
DSurfaceTexture.h409 bool mAttached; variable