Home
last modified time | relevance | path

Searched refs:anchorHeight (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/transformation/
DAnchoredSize.kt32 private val anchorHeight: Boolean, constant in com.android.compose.animation.scene.transformation.AnchoredSize
55 height = if (anchorHeight) size.height else value.height, in transform()
/frameworks/base/core/java/android/widget/
DPopupWindow.java1735 final int anchorHeight = anchor.getHeight(); in findDropDownPosition() local
1738 yOffset -= anchorHeight; in findDropDownPosition()
1753 outParams.y = drawingLocation[1] + anchorHeight + yOffset; in findDropDownPosition()
1779 anchorHeight, drawingLocation[1], screenLocation[1], displayFrame.top, in findDropDownPosition()
1792 scrollY + height + anchorHeight + yOffset); in findDropDownPosition()
1799 outParams.y = drawingLocation[1] + anchorHeight + yOffset; in findDropDownPosition()
1808 tryFitVertical(outParams, yOffset, height, anchorHeight, drawingLocation[1], in findDropDownPosition()
1819 int anchorHeight, int drawingLocationY, int screenLocationY, int displayFrameTop, in tryFitVertical() argument
1828 final int spaceAbove = anchorTopInScreen - anchorHeight - displayFrameTop; in tryFitVertical()
1832 yOffset += anchorHeight; in tryFitVertical()
/frameworks/base/packages/SystemUI/compose/scene/src/com/android/compose/animation/scene/
DTransitionDslImpl.kt185 anchorHeight: Boolean, in anchoredSize()
187 transformation(AnchoredSize(matcher, anchor, anchorWidth, anchorHeight)) in anchoredSize()
DTransitionDsl.kt389 anchorHeight: Boolean = true,
/frameworks/base/packages/SystemUI/compose/scene/tests/src/com/android/compose/animation/scene/transformation/
DAnchoredSizeTest.kt90 anchoredSize(TestElements.Bar, TestElements.Foo, anchorHeight = false) in testAnchoredWidthOnly()