Home
last modified time | relevance | path

Searched refs:endSideContent (Results 1 – 3 of 3) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarBoundsProvider.kt36 @Named(END_SIDE_CONTENT) private val endSideContent: View,
44 BoundsPair(start = startSideContent.boundsOnScreen, end = endSideContent.boundsOnScreen)
57 endSideContent.addOnLayoutChangeListener(layoutListener)
62 endSideContent.removeOnLayoutChangeListener(layoutListener)
76 get() = endSideContent.boundsOnScreen
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarBoundsProviderTest.kt54 private lateinit var endSideContent: View
61 endSideContent = spy(FrameLayout(context)).apply { setBoundsOnScreen(END_SIDE_BOUNDS) }
64 StatusBarBoundsProvider(setOf(boundsChangeListener), startSideContent, endSideContent)
122 endSideContent.setBoundsOnScreen(newBounds)
131 endSideContent.setBoundsOnScreen(newBounds)
142 endSideContent.setBoundsOnScreen(newBounds)
152 endSideContent.layout(newBounds)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/fragment/dagger/
H A DStatusBarFragmentModule.java92 static View endSideContent(@RootView PhoneStatusBarView view) { in endSideContent() method