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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java594 float maxWidth, int bidiFlags, float[] measuredWidth) {
619 if (measuredWidth != null) {
620 measuredWidth[measureIndex] = res;
637 float maxWidth, int bidiFlags, float[] measuredWidth) {
639 bidiFlags, measuredWidth);
593 native_breakText(Paint thisPaint, char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
636 native_breakText(Paint thisPaint, String text, boolean measureForwards, float maxWidth, int bidiFlags, float[] measuredWidth) argument
/frameworks/base/core/java/android/webkit/
H A DWebView.java1959 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
1960 WebView.this.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1510 * Return the number of chars that were measured, and if measuredWidth is
1518 * @param measuredWidth Optional. If not null, returns the actual width
1524 float maxWidth, float[] measuredWidth) {
1536 return native_breakText(text, index, count, maxWidth, mBidiFlags, measuredWidth);
1542 measuredWidth);
1544 if (measuredWidth != null) measuredWidth[0] *= mInvCompatScaling;
1549 float maxWidth, int bidiFlags, float[] measuredWidth);
1553 * Return the number of chars that were measured, and if measuredWidth is
1562 * @param measuredWidth Optiona
1523 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1548 native_breakText(char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
1567 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1616 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1638 native_breakText(String text, boolean measureForwards, float maxWidth, int bidiFlags, float[] measuredWidth) argument
[all...]
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebViewChromium.java2114 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
2115 mWebViewPrivate.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/base/core/java/android/view/
H A DView.java16580 * @param measuredWidth The measured width of this view. May be a complex
16587 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
16594 measuredWidth += optical ? opticalWidth : -opticalWidth;
16597 mMeasuredWidth = measuredWidth;

Completed in 238 milliseconds