Home
last modified time | relevance | path

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

/frameworks/base/libs/WindowManager/Jetpack/tests/unittest/src/androidx/window/extensions/embedding/
DSplitPresenterTest.java338 mPresenter.getRelBoundsForPosition(POSITION_START, taskProperties, in testGetRelBoundsForPosition_expandContainers()
343 mPresenter.getRelBoundsForPosition(POSITION_END, taskProperties, splitAttributes)); in testGetRelBoundsForPosition_expandContainers()
346 mPresenter.getRelBoundsForPosition(POSITION_FILL, taskProperties, splitAttributes)); in testGetRelBoundsForPosition_expandContainers()
359 mPresenter.getRelBoundsForPosition(POSITION_START, taskProperties, in testGetRelBoundsForPosition_expandContainers_isRelativeToParent()
364 mPresenter.getRelBoundsForPosition(POSITION_END, taskProperties, splitAttributes)); in testGetRelBoundsForPosition_expandContainers_isRelativeToParent()
367 mPresenter.getRelBoundsForPosition(POSITION_FILL, taskProperties, splitAttributes)); in testGetRelBoundsForPosition_expandContainers_isRelativeToParent()
384 mPresenter.getRelBoundsForPosition(POSITION_START, taskProperties, in testGetRelBoundsForPosition_splitVertically()
389 mPresenter.getRelBoundsForPosition(POSITION_END, taskProperties, splitAttributes)); in testGetRelBoundsForPosition_splitVertically()
392 mPresenter.getRelBoundsForPosition(POSITION_FILL, taskProperties, splitAttributes)); in testGetRelBoundsForPosition_splitVertically()
401 mPresenter.getRelBoundsForPosition(POSITION_START, taskProperties, in testGetRelBoundsForPosition_splitVertically()
[all …]
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/extensions/embedding/
DSplitPresenter.java182 final Rect primaryRelBounds = getRelBoundsForPosition(POSITION_START, taskProperties, in createNewSplitWithEmptySideContainer()
192 final Rect secondaryRelBounds = getRelBoundsForPosition(POSITION_END, taskProperties, in createNewSplitWithEmptySideContainer()
226 final Rect primaryRelBounds = getRelBoundsForPosition(POSITION_START, taskProperties, in createNewSplitContainer()
231 final Rect secondaryRelBounds = getRelBoundsForPosition(POSITION_END, taskProperties, in createNewSplitContainer()
301 final Rect primaryRelBounds = getRelBoundsForPosition(POSITION_START, taskProperties, in startActivityToSide()
303 final Rect secondaryRelBounds = getRelBoundsForPosition(POSITION_END, taskProperties, in startActivityToSide()
350 final Rect primaryRelBounds = getRelBoundsForPosition(POSITION_START, taskProperties, in updateSplitContainer()
352 final Rect secondaryRelBounds = getRelBoundsForPosition(POSITION_END, taskProperties, in updateSplitContainer()
901 Rect getRelBoundsForPosition(@Position int position, @NonNull TaskProperties taskProperties, in getRelBoundsForPosition() method in SplitPresenter