Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/display/
DMessageBubbleBackground.java37 final int widthPadding = getPaddingLeft() + getPaddingRight(); in onMeasure() local
38 int bubbleWidth = getMeasuredWidth() - widthPadding; in onMeasure()
39 final int maxWidth = MeasureSpec.getSize(widthMeasureSpec) - widthPadding; in onMeasure()
44 MeasureSpec.makeMeasureSpec(bubbleWidth + widthPadding, MeasureSpec.EXACTLY), in onMeasure()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/display/
DMessageBubbleBackground.java37 final int widthPadding = getPaddingLeft() + getPaddingRight(); in onMeasure() local
38 int bubbleWidth = getMeasuredWidth() - widthPadding; in onMeasure()
39 final int maxWidth = MeasureSpec.getSize(widthMeasureSpec) - widthPadding; in onMeasure()
44 MeasureSpec.makeMeasureSpec(bubbleWidth + widthPadding, MeasureSpec.EXACTLY), in onMeasure()
/packages/apps/Messaging/src/com/android/messaging/ui/conversation/
DMessageBubbleBackground.java37 final int widthPadding = getPaddingLeft() + getPaddingRight(); in onMeasure() local
38 int bubbleWidth = getMeasuredWidth() - widthPadding; in onMeasure()
39 final int maxWidth = MeasureSpec.getSize(widthMeasureSpec) - widthPadding; in onMeasure()
44 MeasureSpec.makeMeasureSpec(bubbleWidth + widthPadding, MeasureSpec.EXACTLY), in onMeasure()
/packages/apps/Gallery/src/com/android/camera/
DGalleryPicker.java621 int imageWidth, int widthPadding, int imageHeight, in placeImage() argument
627 int xPos = (col * (imageWidth + widthPadding)) - offsetX; in placeImage()