/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/ |
D | QSCustomizer.java | 57 private boolean isShown; field in QSCustomizer 132 lightBarController.setQsCustomizing(mIsShowingNavBackdrop && isShown); in updateNavColors() 153 if (!isShown) { in show() 159 isShown = true; in show() 173 if (!isShown) { in showImmediately() 179 isShown = true; in showImmediately() 190 if (isShown) { in hide() 191 isShown = false; in hide() 209 public boolean isShown() { in isShown() method in QSCustomizer 210 return isShown; in isShown() [all …]
|
D | QSCustomizerController.java | 192 if (!mView.isShown()) { in show() 230 if (mView.isShown()) { in saveInstanceState() 246 public boolean isShown() { in isShown() method in QSCustomizerController 247 return mView.isShown(); in isShown() 258 if (mView.isShown()) { in hide()
|
/frameworks/base/services/core/java/com/android/server/power/ |
D | InattentiveSleepWarningController.java | 48 public boolean isShown() { in isShown() method in InattentiveSleepWarningController 57 if (isShown()) { in show() 79 if (!isShown()) { in dismiss()
|
/frameworks/base/core/tests/coretests/src/android/widget/listview/ |
D | ListViewHeightTest.java | 66 assertTrue("List not be visible after clicking button1", list.isShown()); in testButtons() 75 assertTrue("List not be visible after clicking button2", list.isShown()); in testButtons() 83 assertFalse("List should not be visible clicking button3", list.isShown()); in testButtons()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/widget/ |
D | AnimatedImageView.java | 39 if (isShown() && mDrawable != null) { in updateDrawable() 48 if (isShown() && mAnimating) { in updateDrawable()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | AnimatedImageView.java | 78 if (isShown() && mAllowAnimation) { in updateAnim() 129 if (isShown() && mAllowAnimation) { in onVisibilityChanged()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/ |
D | Roundable.kt | 126 animate = roundableState.targetView.isShown in <lambda>() 193 animate = roundableState.targetView.isShown in <lambda>() 245 animate = roundableState.targetView.isShown, in <lambda>() 273 requestRoundnessReset(sourceType = sourceType, animate = roundableState.targetView.isShown) in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpAppearanceController.java | 265 private void setShown(boolean isShown) { in setShown() argument 266 if (mShown != isShown) { in setShown() 267 mShown = isShown; in setShown() 268 if (isShown) { in setShown() 348 public boolean isShown() { in isShown() method in HeadsUpAppearanceController
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tileimpl/ |
D | QSIconViewImplTest.java | 62 when(iv.isShown()).thenReturn(true); in testNoFirstAnimation() 88 when(iv.isShown()).thenReturn(true); in testMutateIconDrawable() 103 when(iv.isShown()).thenReturn(true); in testNoFirstFade()
|
D | QSIconViewImplTest_311121830.kt | 137 override fun isShown(): Boolean { in createIcon() method
|
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/template/ |
D | ProgressBarMixinTest.java | 84 assertTrue(mixin.isShown()); in testIsShown() 87 assertFalse(mixin.isShown()); in testIsShown()
|
/frameworks/base/core/java/android/view/ |
D | AccessibilityInteractionController.java | 170 private boolean isShown(View view) { in isShown() method in AccessibilityInteractionController 171 return (view != null) && (view.getWindowVisibility() == View.VISIBLE && view.isShown()); in isShown() 372 if (requestedView != null && isShown(requestedView)) { in findAccessibilityNodeInfoByAccessibilityIdUiThread() 556 if (root != null && isShown(root)) { in findAccessibilityNodeInfosByTextUiThread() 573 if (isShown(foundView) && isVisibleToAccessibilityService(foundView)) { in findAccessibilityNodeInfosByTextUiThread() 678 if (root != null && isShown(root)) { in findFocusUiThread() 688 if (!isShown(host)) { in findFocusUiThread() 711 if (!isShown(target)) { in findFocusUiThread() 779 if (root != null && isShown(root)) { in focusSearchUiThread() 835 if (target != null && isShown(target) && isVisibleToAccessibilityService(target)) { in performAccessibilityActionUiThread() [all …]
|
/frameworks/base/core/java/android/inputmethodservice/ |
D | NavigationBarController.java | 84 default boolean isShown() { in isShown() method 140 boolean isShown() { in isShown() method in NavigationBarController 141 return mImpl.isShown(); in isShown() 606 public boolean isShown() { in isShown() method in NavigationBarController.Impl
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/ |
D | StickyHeaderScrollView.java | 88 if (drawTop + drawOffset < statusBarInset || !drawTarget.isShown()) { in updateStickyHeaderPosition()
|
D | StickyHeaderListView.java | 122 if (drawTop + drawOffset < statusBarInset || !drawTarget.isShown()) { in draw()
|
/frameworks/base/packages/SystemUI/animation/src/com/android/systemui/animation/ |
D | ViewDialogTransitionAnimatorController.kt | 108 return source.isAttachedToWindow && ((source.parent as? View)?.isShown ?: true) in shouldAnimateExit()
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/ |
D | ProgressBarMixin.java | 42 public boolean isShown() { in isShown() method in ProgressBarMixin
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | ExternalDisplayPolicy.java | 282 void onPresentation(int displayId, boolean isShown) { in onPresentation() argument 294 if (isShown) { in onPresentation()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | MessagingPropertyAnimator.java | 146 if (!v.isShown() || start == end in startTopAnimation() 219 if (!view.isShown() || (MessagingLinearLayout.isGone(view) && !isHidingAnimated(view))) { in fadeOut()
|
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/keyguard/ |
D | KeyguardPasswordViewControllerTest.kt | 139 Mockito.`when`(keyguardPasswordView.isShown).thenReturn(true) in testFocusWhenBouncerIsShown() 150 Mockito.`when`(keyguardPasswordView.isShown).thenReturn(true) in testDoNotFocusWhenBouncerIsHidden()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationSectionsManager.kt | 207 val animated = firstChild.isShown && notAnimatedChild in <lambda>() 215 val animated = lastChild.isShown && notAnimatedChild in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
D | QSPanelController.java | 268 public boolean isShown() { in isShown() method in QSPanelController 269 return mView.isShown(); in isShown()
|
/frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/view/ |
D | StickyHeaderRecyclerView.java | 105 if (drawTop + drawOffset < statusBarInset || !drawTarget.isShown()) { in draw()
|
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/ |
D | HeadsUpAppearanceControllerTest.java | 153 assertTrue(mHeadsUpAppearanceController.isShown()); in testShownUpdated() 158 Assert.assertFalse(mHeadsUpAppearanceController.isShown()); in testShownUpdated()
|
/frameworks/base/core/java/android/widget/ |
D | ActivityChooserView.java | 143 if (!isShown()) { 706 if (oldDataModel != null && isShown()) { in setDataModel() 710 if (dataModel != null && isShown()) { in setDataModel()
|