Searched defs:widthSpec (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityViewFlipper.java177 protected void onMeasure(int widthSpec, int heightSpec) { argument
178 final int widthMode = MeasureSpec.getMode(widthSpec);
181 Log.w(TAG, "onMeasure: widthSpec " + MeasureSpec.toString(widthSpec) +
189 final int widthSize = MeasureSpec.getSize(widthSpec);
H A DMultiPaneChallengeLayout.java209 protected void onMeasure(final int widthSpec, final int heightSpec) { argument
210 if (MeasureSpec.getMode(widthSpec) != MeasureSpec.EXACTLY ||
216 final int width = MeasureSpec.getSize(widthSpec);
254 int adjustedWidthSpec = widthSpec;
276 child.measure(widthSpec, heightSpec);
H A DSlidingChallengeLayout.java813 protected void onMeasure(int widthSpec, int heightSpec) { argument
814 if (MeasureSpec.getMode(widthSpec) != MeasureSpec.EXACTLY ||
819 final int width = MeasureSpec.getSize(widthSpec);
897 measureChildWithMargins(mChallengeView, widthSpec, 0, challengeHeightSpec, 0);
911 int parentWidthSpec = widthSpec, parentHeightSpec = insetHeightSpec;
929 parentWidthSpec = widthSpec;
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java724 * @param widthSpec an explicit width measure spec mode, either
733 public void setWindowLayoutMode(int widthSpec, int heightSpec) { argument
734 mWidthMode = widthSpec;
H A DGridLayout.java1004 private void measureChildrenWithMargins(int widthSpec, int heightSpec, boolean firstPass) { argument
1010 measureChildWithMargins2(c, widthSpec, heightSpec, lp.width, lp.height);
1021 measureChildWithMargins2(c, widthSpec, heightSpec, viewSize, lp.height);
1023 measureChildWithMargins2(c, widthSpec, heightSpec, lp.width, viewSize);
1036 protected void onMeasure(int widthSpec, int heightSpec) { argument
1046 int widthSpecSansPadding = adjust( widthSpec, -hPadding);
1069 resolveSizeAndState(measuredWidth, widthSpec, 0),
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java905 private void measureChildrenWithMargins(int widthSpec, int heightSpec, boolean firstPass) { argument
911 measureChildWithMargins2(c, widthSpec, heightSpec, lp.width, lp.height);
922 measureChildWithMargins2(c, widthSpec, heightSpec, viewSize, lp.height);
924 measureChildWithMargins2(c, widthSpec, heightSpec, lp.width, viewSize);
937 protected void onMeasure(int widthSpec, int heightSpec) { argument
947 int widthSpecSansPadding = adjust( widthSpec, -hPadding);
970 ViewCompat.resolveSizeAndState(measuredWidth, widthSpec, 0),

Completed in 245 milliseconds