Home
last modified time | relevance | path

Searched refs:newInsets (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
DPhoneStatusBarViewTest.kt222 val newInsets = Insets.NONE in onConfigurationChanged_noRelevantChange_doesNotUpdateInsets() constant
224 .thenReturn(newInsets) in onConfigurationChanged_noRelevantChange_doesNotUpdateInsets()
244 val newInsets = Insets.NONE in onConfigurationChanged_densityChanged_updatesInsets() constant
246 .thenReturn(newInsets) in onConfigurationChanged_densityChanged_updatesInsets()
250 assertThat(view.paddingLeft).isEqualTo(newInsets.left) in onConfigurationChanged_densityChanged_updatesInsets()
251 assertThat(view.paddingTop).isEqualTo(newInsets.top) in onConfigurationChanged_densityChanged_updatesInsets()
252 assertThat(view.paddingRight).isEqualTo(newInsets.right) in onConfigurationChanged_densityChanged_updatesInsets()
267 val newInsets = Insets.NONE in onConfigurationChanged_fontScaleChanged_updatesInsets() constant
269 .thenReturn(newInsets) in onConfigurationChanged_fontScaleChanged_updatesInsets()
273 assertThat(view.paddingLeft).isEqualTo(newInsets.left) in onConfigurationChanged_fontScaleChanged_updatesInsets()
[all …]
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/windowdecor/
DWindowDecoration.java375 final WindowDecorationInsets newInsets = new WindowDecorationInsets( in updateCaptionInsets() local
377 if (!newInsets.equals(mWindowDecorationInsets)) { in updateCaptionInsets()
379 mWindowDecorationInsets = newInsets; in updateCaptionInsets()
658 final WindowDecorationInsets newInsets = new WindowDecorationInsets(mTaskInfo.token, in addCaptionInset() local
660 if (!newInsets.equals(mWindowDecorationInsets)) { in addCaptionInset()
661 mWindowDecorationInsets = newInsets; in addCaptionInset()