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

/frameworks/support/wear/src/android/support/wear/widget/
H A DBoxInsetLayout.java217 int measuredWidth = resolveSizeAndState(maxWidth, widthMeasureSpec, childState);
220 setMeasuredDimension(measuredWidth, measuredHeight);
223 int boxInset = calculateInset(measuredWidth, measuredHeight);
400 private int calculateInset(int measuredWidth, int measuredHeight) { argument
401 int rightEdge = Math.min(measuredWidth, mScreenWidth);
/frameworks/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java614 int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) {
639 if (measuredWidth != null) {
640 measuredWidth[measureIndex] = res;
657 float maxWidth, int bidiFlags, float[] measuredWidth) {
659 maxWidth, bidiFlags, measuredWidth);
613 nBreakText(long nativePaint, long nativeTypeface, char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
655 nBreakText(long nativePaint, long nativeTypeface, String text, boolean measureForwards, float maxWidth, int bidiFlags, float[] measuredWidth) argument
/frameworks/base/core/java/android/webkit/
H A DWebView.java2435 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
2436 WebView.this.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1996 * Return the number of chars that were measured, and if measuredWidth is
2004 * @param measuredWidth Optional. If not null, returns the actual width
2010 float maxWidth, float[] measuredWidth) {
2023 mBidiFlags, measuredWidth);
2029 maxWidth * mCompatScaling, mBidiFlags, measuredWidth);
2031 if (measuredWidth != null) measuredWidth[0] *= mInvCompatScaling;
2037 * Return the number of chars that were measured, and if measuredWidth is
2046 * @param measuredWidth Optional. If not null, returns the actual width
2053 float maxWidth, float[] measuredWidth) {
2009 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
2051 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
2100 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
2850 nBreakText(long nObject, long nTypeface, char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
2853 nBreakText(long nObject, long nTypeface, String text, boolean measureForwards, float maxWidth, int bidiFlags, float[] measuredWidth) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java22155 * @param measuredWidth The measured width of this view. May be a complex
22162 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
22169 measuredWidth += optical ? opticalWidth : -opticalWidth;
22172 setMeasuredDimensionRaw(measuredWidth, measuredHeight);
22180 * @param measuredWidth The measured width of this view. May be a complex
22187 private void setMeasuredDimensionRaw(int measuredWidth, int measuredHeight) { argument
22188 mMeasuredWidth = measuredWidth;
26184 stream.addProperty("measurement:measuredWidth", mMeasuredWidth);

Completed in 176 milliseconds