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/base/tools/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.java2372 public void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
2373 WebView.this.setMeasuredDimension(measuredWidth, measuredHeight);
/frameworks/base/graphics/java/android/graphics/
H A DPaint.java1900 * Return the number of chars that were measured, and if measuredWidth is
1908 * @param measuredWidth Optional. If not null, returns the actual width
1914 float maxWidth, float[] measuredWidth) {
1927 mBidiFlags, measuredWidth);
1933 maxWidth * mCompatScaling, mBidiFlags, measuredWidth);
1935 if (measuredWidth != null) measuredWidth[0] *= mInvCompatScaling;
1941 * Return the number of chars that were measured, and if measuredWidth is
1950 * @param measuredWidth Optional. If not null, returns the actual width
1957 float maxWidth, float[] measuredWidth) {
1913 breakText(char[] text, int index, int count, float maxWidth, float[] measuredWidth) argument
1955 breakText(CharSequence text, int start, int end, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
2004 breakText(String text, boolean measureForwards, float maxWidth, float[] measuredWidth) argument
2754 nBreakText(long nObject, long nTypeface, char[] text, int index, int count, float maxWidth, int bidiFlags, float[] measuredWidth) argument
2757 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.java22082 * @param measuredWidth The measured width of this view. May be a complex
22089 protected final void setMeasuredDimension(int measuredWidth, int measuredHeight) { argument
22096 measuredWidth += optical ? opticalWidth : -opticalWidth;
22099 setMeasuredDimensionRaw(measuredWidth, measuredHeight);
22107 * @param measuredWidth The measured width of this view. May be a complex
22114 private void setMeasuredDimensionRaw(int measuredWidth, int measuredHeight) { argument
22115 mMeasuredWidth = measuredWidth;
26184 stream.addProperty("measurement:measuredWidth", mMeasuredWidth);

Completed in 195 milliseconds