Searched defs:mDividerHeight (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/stack/
H A DNotificationChildrenContainer.java39 private final int mDividerHeight; field in class:NotificationChildrenContainer
65 mDividerHeight = getResources().getDimensionPixelSize(
101 mDividers.get(i - 1).layout(0, 0, getWidth(), mDividerHeight);
107 mCollapseDivider.layout(0, mCollapseButtonHeight - mDividerHeight, getWidth(),
122 int dividerHeightSpec = MeasureSpec.makeMeasureSpec(mDividerHeight, MeasureSpec.EXACTLY);
237 intrinsicHeight += (visibleChildren - 1) * mDividerHeight;
295 - (mChildPadding + mDividerHeight) / 2.0f);
331 - (mChildPadding + mDividerHeight) / 2.0f + mNotificationAppearDistance;
370 - (mChildPadding + mDividerHeight) / 2.0f;
/frameworks/base/core/java/android/widget/
H A DLinearLayout.java184 private int mDividerHeight; field in class:LinearLayout
292 mDividerHeight = divider.getIntrinsicHeight();
295 mDividerHeight = 0;
355 final int top = child.getTop() - lp.topMargin - mDividerHeight;
365 bottom = getHeight() - getPaddingBottom() - mDividerHeight;
431 getWidth() - getPaddingRight() - mDividerPadding, top + mDividerHeight);
718 mTotalLength += mDividerHeight;
816 mTotalLength += mDividerHeight;
1582 childTop += mDividerHeight;
H A DListView.java117 int mDividerHeight; field in class:ListView
225 delta -= mDividerHeight;
239 delta += mDividerHeight;
664 final int startOffset = count > 0 ? getChildAt(count - 1).getBottom() + mDividerHeight :
673 final int startOffset = count > 0 ? getChildAt(0).getTop() - mDividerHeight :
704 nextTop = child.getBottom() + mDividerHeight;
737 nextBottom = child.getTop() - mDividerHeight;
810 final int dividerHeight = mDividerHeight;
994 final int dividerHeight = mDividerHeight;
1267 final int dividerHeight = ((mDividerHeight >
[all...]
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DLinearLayoutCompat.java137 private int mDividerHeight; field in class:LinearLayoutCompat
235 mDividerHeight = divider.getIntrinsicHeight();
238 mDividerHeight = 0;
298 final int top = child.getTop() - lp.topMargin - mDividerHeight;
308 bottom = getHeight() - getPaddingBottom() - mDividerHeight;
360 getWidth() - getPaddingRight() - mDividerPadding, top + mDividerHeight);
626 mTotalLength += mDividerHeight;
725 mTotalLength += mDividerHeight;
1491 childTop += mDividerHeight;

Completed in 95 milliseconds