Searched defs:heightSpec (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardSecurityViewFlipper.java183 protected void onMeasure(int widthSpec, int heightSpec) { argument
185 final int heightMode = MeasureSpec.getMode(heightSpec);
191 Log.w(TAG, "onMeasure: heightSpec " + MeasureSpec.toString(heightSpec) +
196 final int heightSize = MeasureSpec.getSize(heightSpec);
/frameworks/support/design/src/android/support/design/widget/
H A DNavigationView.java200 protected void onMeasure(int widthSpec, int heightSpec) { argument
214 super.onMeasure(widthSpec, heightSpec);
/frameworks/support/v7/recyclerview/src/android/support/v7/widget/
H A DGridLayoutManager.java563 private void measureChildWithDecorationsAndMargin(View child, int widthSpec, int heightSpec, argument
572 heightSpec = updateSpecWithExtra(heightSpec, lp.topMargin + mDecorInsets.top,
575 child.measure(widthSpec, heightSpec);
H A DStaggeredGridLayoutManager.java1026 int heightSpec) {
1031 heightSpec = updateSpecWithExtra(heightSpec, lp.topMargin + mTmpRect.top,
1033 child.measure(widthSpec, heightSpec);
1025 measureChildWithDecorationsAndMargin(View child, int widthSpec, int heightSpec) argument
H A DRecyclerView.java2466 protected void onMeasure(int widthSpec, int heightSpec) { argument
2492 defaultOnMeasure(widthSpec, heightSpec);
2494 mLayout.onMeasure(mRecycler, mState, widthSpec, heightSpec);
2503 private void defaultOnMeasure(int widthSpec, int heightSpec) { argument
2505 final int heightMode = MeasureSpec.getMode(heightSpec);
2507 final int heightSize = MeasureSpec.getSize(heightSpec);
6901 final int heightSpec = getChildMeasureSpec(getHeight(),
6904 child.measure(widthSpec, heightSpec);
6930 final int heightSpec = getChildMeasureSpec(getHeight(),
6934 child.measure(widthSpec, heightSpec);
7529 onMeasure(Recycler recycler, State state, int widthSpec, int heightSpec) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java882 * @param heightSpec an explicit height measure spec mode, either
890 public void setWindowLayoutMode(int widthSpec, int heightSpec) { argument
892 mHeightMode = heightSpec;
H A DGridLayout.java1000 private void measureChildrenWithMargins(int widthSpec, int heightSpec, boolean firstPass) { argument
1006 measureChildWithMargins2(c, widthSpec, heightSpec, lp.width, lp.height);
1017 measureChildWithMargins2(c, widthSpec, heightSpec, viewSize, lp.height);
1019 measureChildWithMargins2(c, widthSpec, heightSpec, lp.width, viewSize);
1032 protected void onMeasure(int widthSpec, int heightSpec) { argument
1043 int heightSpecSansPadding = adjust(heightSpec, -vPadding);
1066 resolveSizeAndState(measuredHeight, heightSpec, 0));
/frameworks/support/v7/gridlayout/src/android/support/v7/widget/
H A DGridLayout.java900 private void measureChildrenWithMargins(int widthSpec, int heightSpec, boolean firstPass) { argument
906 measureChildWithMargins2(c, widthSpec, heightSpec, lp.width, lp.height);
917 measureChildWithMargins2(c, widthSpec, heightSpec, viewSize, lp.height);
919 measureChildWithMargins2(c, widthSpec, heightSpec, lp.width, viewSize);
932 protected void onMeasure(int widthSpec, int heightSpec) { argument
943 int heightSpecSansPadding = adjust(heightSpec, -vPadding);
966 ViewCompat.resolveSizeAndState(measuredHeight, heightSpec, 0));
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DGridLayoutManager.java1059 private void measureScrapChild(int position, int widthSpec, int heightSpec, argument
1066 int childHeightSpec = ViewGroup.getChildMeasureSpec(heightSpec,
1180 public void onMeasure(Recycler recycler, State state, int widthSpec, int heightSpec) { argument
1187 sizeSecondary = MeasureSpec.getSize(heightSpec);
1188 modeSecondary = MeasureSpec.getMode(heightSpec);
1192 sizePrimary = MeasureSpec.getSize(heightSpec);
1197 " heightSpec " + Integer.toHexString(heightSpec) +
1294 int widthSpec, heightSpec;
1300 heightSpec
[all...]

Completed in 160 milliseconds