Home
last modified time | relevance | path

Searched refs:resolveSize (Results 1 – 25 of 28) sorted by relevance

12

/aosp12/frameworks/base/core/java/android/view/animation/
H A DClipRectAnimation.java158 mFromRect.set((int) resolveSize(mFromLeftType, mFromLeftValue, width, parentWidth), in initialize()
159 (int) resolveSize(mFromTopType, mFromTopValue, height, parentHeight), in initialize()
160 (int) resolveSize(mFromRightType, mFromRightValue, width, parentWidth), in initialize()
161 (int) resolveSize(mFromBottomType, mFromBottomValue, height, parentHeight)); in initialize()
162 mToRect.set((int) resolveSize(mToLeftType, mToLeftValue, width, parentWidth), in initialize()
163 (int) resolveSize(mToTopType, mToTopValue, height, parentHeight), in initialize()
164 (int) resolveSize(mToRightType, mToRightValue, width, parentWidth), in initialize()
165 (int) resolveSize(mToBottomType, mToBottomValue, height, parentHeight)); in initialize()
H A DTranslateAnimation.java181 mFromXDelta = resolveSize(mFromXType, mFromXValue, width, parentWidth); in initialize()
182 mToXDelta = resolveSize(mToXType, mToXValue, width, parentWidth); in initialize()
183 mFromYDelta = resolveSize(mFromYType, mFromYValue, height, parentHeight); in initialize()
184 mToYDelta = resolveSize(mToYType, mToYValue, height, parentHeight); in initialize()
H A DRotateAnimation.java180 mPivotX = resolveSize(mPivotXType, mPivotXValue, width, parentWidth); in initialize()
181 mPivotY = resolveSize(mPivotYType, mPivotYValue, height, parentHeight); in initialize()
H A DScaleAnimation.java286 mPivotX = resolveSize(mPivotXType, mPivotXValue, width, parentWidth); in initialize()
287 mPivotY = resolveSize(mPivotYType, mPivotYValue, height, parentHeight); in initialize()
H A DAnimation.java1084 protected float resolveSize(int type, float value, int size, int parentSize) { in resolveSize() method
/aosp12/packages/apps/LegacyCamera/src/com/android/camera/ui/
H A DStackLayout.java44 setMeasuredDimension(resolveSize(width, widthMeasureSpec), in onMeasure()
45 resolveSize(height, heightMeasureSpec)); in onMeasure()
/aosp12/packages/apps/Dialer/java/com/android/dialer/dialpadview/
H A DDialpadTextView.java67 int width = resolveSize(textBounds.width(), widthMeasureSpec); in onMeasure()
68 int height = resolveSize(textBounds.height(), heightMeasureSpec); in onMeasure()
/aosp12/packages/apps/PhoneCommon/src/com/android/phone/common/dialpad/
H A DDialpadTextView.java68 int width = resolveSize(mTextBounds.width(), widthMeasureSpec); in onMeasure()
69 int height = resolveSize(mTextBounds.height(), heightMeasureSpec); in onMeasure()
/aosp12/packages/apps/Messaging/src/com/android/messaging/ui/
H A DAsyncImageView.java334 final int minimumWidth = resolveSize( in onMeasure()
336 final int minimumHeight = resolveSize( in onMeasure()
345 height = resolveSize((int) (minimumWidth / aspectRatio), in onMeasure()
351 width = resolveSize((int) (minimumHeight * aspectRatio), in onMeasure()
359 private static int resolveSize(int desiredSize, int maxSize, int measureSpec) { in resolveSize() method in AsyncImageView
/aosp12/packages/apps/Contacts/src/com/android/contacts/widget/
H A DProportionalLayout.java118 resolveSize(width, widthMeasureSpec), resolveSize(height, heightMeasureSpec)); in onMeasure()
H A DInterpolatingLayout.java275 resolveSize(width, widthMeasureSpec), resolveSize(height, heightMeasureSpec)); in onMeasure()
/aosp12/packages/apps/Gallery/src/com/android/camera/
H A DEvenlySpacedLayout.java65 setMeasuredDimension(resolveSize(width, widthMeasureSpec), in onMeasure()
66 resolveSize(height, heightMeasureSpec)); in onMeasure()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/ongoingcall/
H A DOngoingCallChronometer.kt84 val enforcedTextWidth = resolveSize(desiredTextWidth, widthMeasureSpec)
/aosp12/frameworks/base/core/java/com/android/internal/widget/
H A DNotificationActionListLayout.java217 setMeasuredDimension(resolveSize(getSuggestedMinimumWidth(), widthMeasureSpec), in onMeasure()
218 resolveSize(getSuggestedMinimumHeight(), heightMeasureSpec)); in onMeasure()
H A DMessagingLinearLayout.java177 resolveSize(Math.max(getSuggestedMinimumWidth(), measuredWidth), in onMeasure()
/aosp12/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
H A DPrintContentView.java268 setMeasuredDimension(resolveSize(MeasureSpec.getSize(widthMeasureSpec), widthMeasureSpec), in onMeasure()
269 resolveSize(heightSize, heightMeasureSpec)); in onMeasure()
/aosp12/frameworks/base/core/java/com/android/internal/view/menu/
H A DIconMenuView.java412 int measuredWidth = resolveSize(Integer.MAX_VALUE, widthMeasureSpec); in onMeasure()
424 resolveSize(desiredHeight, heightMeasureSpec)); in onMeasure()
/aosp12/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
H A DMessagingLinearLayoutTest.java150 clampToMultiplesOfLineHeight(resolveSize(getDesiredHeight(), in onMeasure()
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DSmartReplyView.java374 resolveSize(Math.max(getSuggestedMinimumWidth(), in onMeasure()
377 resolveSize(buttonHeight, heightMeasureSpec)); in onMeasure()
/aosp12/frameworks/base/core/java/android/widget/
H A DSimpleMonthView.java873 final int resolvedWidth = resolveSize(preferredWidth, widthMeasureSpec); in onMeasure()
874 final int resolvedHeight = resolveSize(preferredHeight, heightMeasureSpec); in onMeasure()
H A DRelativeLayout.java567 width = resolveSize(width, widthMeasureSpec); in onMeasure()
597 height = resolveSize(height, heightMeasureSpec); in onMeasure()
/aosp12/packages/apps/Contacts/src/com/android/contacts/list/
H A DContactListItemView.java429 final int specWidth = resolveSize(0, widthMeasureSpec); in onMeasure()
/aosp12/frameworks/base/core/java/android/view/
H A DView.java25972 public static int resolveSize(int size, int measureSpec) { in resolveSize() method in View
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/frameworks/base/boot/
H A Dboot-image-profile.txt17968 HSPLandroid/view/View;->resolveSize(II)I
19080 HSPLandroid/view/animation/Animation;->resolveSize(IFII)F

12