Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/animation/
DTransitionAnimatorTest.kt148 val containerLocation = IntArray(2) in <lambda>() constant
149 container.getLocationOnScreen(containerLocation) in <lambda>()
151 left = containerLocation[0], in <lambda>()
152 top = containerLocation[1], in <lambda>()
153 right = containerLocation[0] + emulationSpec.display.width, in <lambda>()
154 bottom = containerLocation[1] + emulationSpec.display.height, in <lambda>()
184 val containerLocation = IntArray(2) in createAnimatorState() constant
185 transitionContainer.getLocationOnScreen(containerLocation) in createAnimatorState()
187 left = containerLocation[0] + 100, in createAnimatorState()
188 top = containerLocation[1] + 300, in createAnimatorState()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/customize/
DQSCustomizer.java156 int[] containerLocation = findViewById(R.id.customize_container).getLocationOnScreen(); in show() local
157 mX = x - containerLocation[0]; in show()
158 mY = y - containerLocation[1]; in show()
235 int[] containerLocation = findViewById(R.id.customize_container).getLocationOnScreen(); in setEditLocation() local
236 mX = x - containerLocation[0]; in setEditLocation()
237 mY = y - containerLocation[1]; in setEditLocation()