Searched defs:measuredWidth (Results 1 - 8 of 8) sorted by relevance

/frameworks/av/packages/MediaComponents/src/com/android/widget/
H A DViewGroupImpl.java94 public void setMeasuredDimension_impl(int measuredWidth, int measuredHeight) { argument
95 mSuperProvider.setMeasuredDimension_impl(measuredWidth, measuredHeight);
/frameworks/base/media/java/android/media/update/
H A DViewGroupProvider.java53 void setMeasuredDimension_impl(int measuredWidth, int measuredHeight); argument
H A DViewGroupHelper.java214 public void setMeasuredDimension_impl(int measuredWidth, int measuredHeight) { argument
215 ViewGroupHelper.super.setMeasuredDimension(measuredWidth, measuredHeight);
320 public void setMeasuredDimension_impl(int measuredWidth, int measuredHeight) { argument
321 ViewGroupHelper.this.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/support/wear/src/main/java/androidx/wear/widget/
H A DBoxInsetLayout.java198 int measuredWidth = resolveSizeAndState(maxWidth, widthMeasureSpec, childState);
201 setMeasuredDimension(measuredWidth, measuredHeight);
204 int boxInset = calculateInset(measuredWidth, measuredHeight);
381 private int calculateInset(int measuredWidth, int measuredHeight) { argument
382 int rightEdge = Math.min(measuredWidth, mScreenWidth);
/frameworks/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java650 int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) {
675 if (measuredWidth != null) {
676 measuredWidth[measureIndex] = res;
692 float maxWidth, int bidiFlags, float[] measuredWidth) {
694 maxWidth, bidiFlags, measuredWidth);
649 nBreakText(long nativePaint, char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
691 nBreakText(long nativePaint, String text, boolean measureForwards, float maxWidth, int bidiFlags, float[] measuredWidth) argument
/frameworks/base/core/java/android/webkit/
H A DWebView.java2586 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
2587 WebView.this.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1997 * Return the number of chars that were measured, and if measuredWidth is
2005 * @param measuredWidth Optional. If not null, returns the actual width
2011 float maxWidth, float[] measuredWidth) {
2024 measuredWidth);
2030 mBidiFlags, measuredWidth);
2032 if (measuredWidth != null) measuredWidth[0] *= mInvCompatScaling;
2038 * Return the number of chars that were measured, and if measuredWidth is
2047 * @param measuredWidth Optional. If not null, returns the actual width
2054 float maxWidth, float[] measuredWidth) {
2010 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
2052 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
2101 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
2852 nBreakText(long nObject, char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
2854 nBreakText(long nObject, String text, boolean measureForwards, float maxWidth, int bidiFlags, float[] measuredWidth) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java23253 * @param measuredWidth The measured width of this view. May be a complex
23260 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
23267 measuredWidth += optical ? opticalWidth : -opticalWidth;
23270 setMeasuredDimensionRaw(measuredWidth, measuredHeight);
23278 * @param measuredWidth The measured width of this view. May be a complex
23285 private void setMeasuredDimensionRaw(int measuredWidth, int measuredHeight) { argument
23286 mMeasuredWidth = measuredWidth;
[all...]

Completed in 654 milliseconds