/frameworks/base/core/java/android/view/animation/ |
D | ClipRectAnimation.java | 156 public void initialize(int width, int height, int parentWidth, int parentHeight) { in initialize() argument 157 super.initialize(width, height, parentWidth, parentHeight); in initialize() 159 (int) resolveSize(mFromTopType, mFromTopValue, height, parentHeight), in initialize() 161 (int) resolveSize(mFromBottomType, mFromBottomValue, height, parentHeight)); in initialize() 163 (int) resolveSize(mToTopType, mToTopValue, height, parentHeight), in initialize() 165 (int) resolveSize(mToBottomType, mToBottomValue, height, parentHeight)); in initialize()
|
D | TranslateAnimation.java | 176 public void initialize(int width, int height, int parentWidth, int parentHeight) { in initialize() argument 177 super.initialize(width, height, parentWidth, parentHeight); in initialize() 180 mFromYDelta = resolveSize(mFromYType, mFromYValue, height, parentHeight); in initialize() 181 mToYDelta = resolveSize(mToYType, mToYValue, height, parentHeight); in initialize()
|
D | ScaleAnimation.java | 278 public void initialize(int width, int height, int parentWidth, int parentHeight) { in initialize() argument 279 super.initialize(width, height, parentWidth, parentHeight); in initialize() 283 mFromY = resolveScale(mFromY, mFromYType, mFromYData, height, parentHeight); in initialize() 284 mToY = resolveScale(mToY, mToYType, mToYData, height, parentHeight); in initialize() 287 mPivotY = resolveSize(mPivotYType, mPivotYValue, height, parentHeight); in initialize()
|
D | RotateAnimation.java | 178 public void initialize(int width, int height, int parentWidth, int parentHeight) { in initialize() argument 179 super.initialize(width, height, parentWidth, parentHeight); in initialize() 181 mPivotY = resolveSize(mPivotYType, mPivotYValue, height, parentHeight); in initialize()
|
D | AnimationSet.java | 420 public void initialize(int width, int height, int parentWidth, int parentHeight) { in initialize() argument 421 super.initialize(width, height, parentWidth, parentHeight); in initialize() 478 a.initialize(width, height, parentWidth, parentHeight); in initialize()
|
D | Animation.java | 366 public void initialize(int width, int height, int parentWidth, int parentHeight) { in initialize() argument
|
/frameworks/base/libs/WindowManager/Jetpack/src/androidx/window/util/ |
D | ExtensionHelper.java | 63 private static void rotateBounds(Rect inOutRect, int parentWidth, int parentHeight, in rotateBounds() argument 80 inOutRect.left = parentHeight - inOutRect.bottom; in rotateBounds() 82 inOutRect.right = parentHeight - inOutRect.top; in rotateBounds()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | SlidingTab.java | 356 final int parentHeight = b - t; in layout() local 365 final int targetTop = (parentHeight - targetHeight) / 2; in layout() 367 final int top = (parentHeight - handleHeight) / 2; in layout() 368 final int bottom = (parentHeight + handleHeight) / 2; in layout() 386 final int top = (int) (THRESHOLD * parentHeight) + handleHeight / 2 - targetHeight; in layout() 387 final int bottom = (int) ((1.0f - THRESHOLD) * parentHeight) - handleHeight / 2; in layout() 390 text.layout(left, 0 - parentHeight, right, 0); in layout() 394 tab.layout(left, parentHeight - handleHeight, right, parentHeight); in layout() 395 text.layout(left, parentHeight, right, parentHeight + parentHeight); in layout()
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/ |
D | FillContentLayout.java | 85 private void measureIllustrationChild(View child, int parentWidth, int parentHeight) { in measureIllustrationChild() argument 98 Math.min(maxHeight, parentHeight), in measureIllustrationChild()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ |
D | KeyguardClockPositionAlgorithm.java | 173 int notificationStackHeight, float panelExpansion, int parentHeight, in setup() argument 183 mHeight = parentHeight; in setup()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/ |
D | NotificationMenuRow.java | 477 int parentHeight = mParent.getActualHeight(); in onParentHeightUpdate() local 479 if (parentHeight < mVertSpaceForIcons) { in onParentHeightUpdate() 480 translationY = (parentHeight / 2) - (mHorizSpaceForIcon / 2); in onParentHeightUpdate()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
D | NotificationChildrenContainer.java | 671 int parentHeight, ExpandableViewState childState, int yPosition) { 676 if (bottom >= parentHeight) { 678 newHeight = Math.max((parentHeight - top), 0);
|