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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java624 int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) {
649 if (measuredWidth != null) {
650 measuredWidth[measureIndex] = res;
667 float maxWidth, int bidiFlags, float[] measuredWidth) {
669 maxWidth, bidiFlags, measuredWidth);
623 native_breakText(long nativePaint, long nativeTypeface, char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
665 native_breakText(long nativePaint, long nativeTypeface, String text, boolean measureForwards, float maxWidth, int bidiFlags, float[] measuredWidth) argument
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1569 * Return the number of chars that were measured, and if measuredWidth is
1577 * @param measuredWidth Optional. If not null, returns the actual width
1583 float maxWidth, float[] measuredWidth) {
1596 mBidiFlags, measuredWidth);
1602 maxWidth * mCompatScaling, mBidiFlags, measuredWidth);
1604 if (measuredWidth != null) measuredWidth[0] *= mInvCompatScaling;
1610 float maxWidth, int bidiFlags, float[] measuredWidth);
1614 * Return the number of chars that were measured, and if measuredWidth is
1623 * @param measuredWidth Optiona
1582 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1608 native_breakText(long native_object, long native_typeface, char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
1628 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1677 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1700 native_breakText(long native_object, long native_typeface, String text, boolean measureForwards, float maxWidth, int bidiFlags, float[] measuredWidth) argument
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java2249 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
2250 mWebViewPrivate.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/base/core/java/android/webkit/
H A DWebView.java2099 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
2100 WebView.this.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/base/core/java/android/view/
H A DView.java17630 * @param measuredWidth The measured width of this view. May be a complex
17637 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
17644 measuredWidth += optical ? opticalWidth : -opticalWidth;
17647 setMeasuredDimensionRaw(measuredWidth, measuredHeight);
17655 * @param measuredWidth The measured width of this view. May be a complex
17662 private void setMeasuredDimensionRaw(int measuredWidth, int measuredHeight) { argument
17663 mMeasuredWidth = measuredWidth;

Completed in 883 milliseconds