Searched defs:heightSpec (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
179 final int heightMode = MeasureSpec.getMode(heightSpec);
185 Log.w(TAG, "onMeasure: heightSpec " + MeasureSpec.toString(heightSpec) +
190 final int heightSize = MeasureSpec.getSize(heightSpec);
H A DMultiPaneChallengeLayout.java209 protected void onMeasure(final int widthSpec, final int heightSpec) { argument
211 MeasureSpec.getMode(heightSpec) != MeasureSpec.EXACTLY) {
217 final int height = MeasureSpec.getSize(heightSpec);
276 child.measure(widthSpec, heightSpec);
H A DSlidingChallengeLayout.java813 protected void onMeasure(int widthSpec, int heightSpec) { argument
815 MeasureSpec.getMode(heightSpec) != MeasureSpec.EXACTLY) {
820 final int height = MeasureSpec.getSize(heightSpec);
930 parentHeightSpec = heightSpec;
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java728 * @param heightSpec an explicit height measure spec mode, either
733 public void setWindowLayoutMode(int widthSpec, int heightSpec) { argument
735 mHeightMode = heightSpec;
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
1047 int heightSpecSansPadding = adjust(heightSpec, -vPadding);
1070 resolveSizeAndState(measuredHeight, heightSpec, 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
948 int heightSpecSansPadding = adjust(heightSpec, -vPadding);
971 ViewCompat.resolveSizeAndState(measuredHeight, heightSpec, 0));

Completed in 258 milliseconds