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

/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1337 * Return the number of chars that were measured, and if measuredWidth is
1345 * @param measuredWidth Optional. If not null, returns the actual width
1351 float maxWidth, float[] measuredWidth) {
1363 return native_breakText(text, index, count, maxWidth, measuredWidth);
1369 measuredWidth);
1371 if (measuredWidth != null) measuredWidth[0] *= mInvCompatScaling;
1376 float maxWidth, float[] measuredWidth);
1380 * Return the number of chars that were measured, and if measuredWidth is
1389 * @param measuredWidth Optiona
1350 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1375 native_breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1394 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1443 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
1465 native_breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/graphics/
H A DPaint_Delegate.java589 float maxWidth, float[] measuredWidth) {
614 if (measuredWidth != null) {
615 measuredWidth[measureIndex] = res;
632 float maxWidth, float[] measuredWidth) {
634 measuredWidth);
588 native_breakText(Paint thisPaint, char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
631 native_breakText(Paint thisPaint, String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
/frameworks/base/core/java/android/view/
H A DView.java12796 * @param measuredWidth The measured width of this view. May be a complex
12803 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
12804 mMeasuredWidth = measuredWidth;

Completed in 3664 milliseconds