Lines Matching refs:height

159          * @param freeformHeightPct the percentage of the stack height (not including paddings) to
194 // The freeform height is the visible height (not including system insets) - padding
196 int availableHeight = taskStackBounds.height() - topMargin - stackBottomOffset;
234 // The freeform workspace bounds, inset by the top system insets and is a fixed height
275 // The height between the top margin and the top of the focused task
278 // The height between the bottom margin and the top of task in front of the focused task
457 int height = mStackRect.height() - mInitialTopOffset - mStackBottomOffset;
458 mTaskRect.set(mStackRect.left, mStackRect.top, mStackRect.right, mStackRect.top + height);
532 int maxBottomOffset = mStackBottomOffset + mTaskRect.height();
551 int maxBottomOffset = mStackBottomOffset + mTaskRect.height();
590 mTaskRect.height() - mMinMargin, FROM_TOP);
944 (mStackRect.height() - mSystemInsets.bottom - mTaskRect.height()) / 2;
954 unfocusedRangeX)) * mStackRect.height());
956 focusedRangeX)) * mStackRect.height());
1041 float deltaP = (float) (y - downY) / mStackRect.height() *
1051 int y = (int) ((p - downScrollP) * mStackRect.height() *
1075 Math.min(displayRect.width(), displayRect.height()),
1076 Math.max(displayRect.width(), displayRect.height()));
1121 * stack height).
1125 ? mStackRect.height() - y
1127 float offsetPct = offset / mStackRect.height();
1133 * stack height).
1137 ? mStackRect.height() - y
1139 float offsetPct = offset / mStackRect.height();
1148 // linear pieces that goes from (0,1) through (0.5, peek height offset),
1150 float topPeekHeightPct = (float) mFocusedTopPeekHeight / mStackRect.height();
1152 mStackRect.height();
1153 float minBottomPeekHeightPct = (float) (mFocusedTopPeekHeight + mTaskRect.height() -
1154 mMinMargin) / mStackRect.height();
1169 // beziers that goes from (0,1) through (0.5, peek height offset) and ends at (1,0). This
1171 // task progress. Because the height offset can change depending on a resource, we compute
1173 // there is a tangent at (0.5, peek height offset).
1176 float topPeekHeightPct = (float) mFocusedTopPeekHeight / mStackRect.height();
1227 float scale = Utilities.clamp01((float) instance.height() / other.height());