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

/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java594 float maxWidth, float[] measuredWidth) {
619 if (measuredWidth != null) {
620 measuredWidth[measureIndex] = res;
637 float maxWidth, float[] measuredWidth) {
639 measuredWidth);
593 native_breakText(Paint thisPaint, char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
636 native_breakText(Paint thisPaint, String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
/frameworks/base/core/java/android/webkit/
H A DWebView.java1827 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
1828 WebView.this.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1408 * Return the number of chars that were measured, and if measuredWidth is
1416 * @param measuredWidth Optional. If not null, returns the actual width
1422 float maxWidth, float[] measuredWidth) {
1434 return native_breakText(text, index, count, maxWidth, measuredWidth);
1440 measuredWidth);
1442 if (measuredWidth != null) measuredWidth[0] *= mInvCompatScaling;
1447 float maxWidth, float[] measuredWidth);
1451 * Return the number of chars that were measured, and if measuredWidth is
1460 * @param measuredWidth Optiona
1421 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1446 native_breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1465 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1514 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1536 native_breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
[all...]
/frameworks/base/core/java/android/view/
H A DView.java15586 * @param measuredWidth The measured width of this view. May be a complex
15593 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
15594 mMeasuredWidth = measuredWidth;

Completed in 1179 milliseconds