Home
last modified time | relevance | path

Searched refs:targetTop (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/core/java/com/android/internal/widget/
DSlidingTab.java362 final int targetTop = (parentHeight - targetHeight) / 2; in layout() local
363 final int targetBottom = targetTop + targetHeight; in layout()
370 target.layout(leftTarget, targetTop, leftTarget + targetWidth, targetBottom); in layout()
375 target.layout(rightTarget, targetTop, rightTarget + targetWidth, targetBottom); in layout()
DResolverDrawerLayout.java613 int targetTop = Math.max(
616 if (top != targetTop) {
617 child.offsetTopAndBottom(targetTop - top);
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/back/
DCrossTaskBackAnimation.java217 float targetTop =
223 float top = mapRange(progress, mClosingStartRect.top, targetTop);
/frameworks/base/core/java/android/widget/
DAbsListView.java7970 final int targetTop = getChildAt(mTargetPos - firstPos).getTop(); in startWithOffset() local
7971 smoothScrollBy(targetTop - offset, duration, true, false); in startWithOffset()
8005 final int targetTop = targetChild.getTop();
8012 if (targetTop < paddedTop) {
8013 scrollBy = targetTop - paddedTop;
8232 final int targetTop = getChildAt(position - firstPos).getTop(); in run() local
8233 final int distance = targetTop - mOffsetFromTop; in run()