Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DStatusBarBoundsProvider.kt35 @Named(START_SIDE_CONTENT) private val startSideContent: View,
44 BoundsPair(start = startSideContent.boundsOnScreen, end = endSideContent.boundsOnScreen)
56 startSideContent.addOnLayoutChangeListener(layoutListener)
61 startSideContent.removeOnLayoutChangeListener(layoutListener)
89 get() = startSideContent.boundsOnScreen
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/phone/
H A DStatusBarBoundsProviderTest.kt53 private lateinit var startSideContent: View
60 startSideContent = spy(FrameLayout(context)).apply { setBoundsOnScreen(START_SIDE_BOUNDS) }
64 StatusBarBoundsProvider(setOf(boundsChangeListener), startSideContent, endSideContent)
82 startSideContent.setBoundsOnScreen(newBounds)
91 startSideContent.setBoundsOnScreen(newBounds)
102 startSideContent.setBoundsOnScreen(newBounds)
112 startSideContent.layout(newBounds)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/fragment/dagger/
H A DStatusBarFragmentModule.java84 static View startSideContent(@RootView PhoneStatusBarView view) { in startSideContent() method