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

/packages/apps/Launcher3/src/com/android/launcher3/
H A DInsettableFrameLayout.java15 protected Rect mInsets = new Rect(); field in class:InsettableFrameLayout
18 return mInsets;
44 setFrameLayoutChildInsets(child, insets, mInsets);
46 mInsets.set(insets);
94 setFrameLayoutChildInsets(child, mInsets, new Rect());
H A DDeviceProfile.java120 private final Rect mInsets = new Rect(); field in class:DeviceProfile
393 mInsets.set(insets);
398 return mInsets;
466 mInsets.left, mInsets.top, hotseatBarSidePaddingPx, mInsets.bottom);
469 hotseatBarSidePaddingPx, mInsets.top, mInsets.right, mInsets.bottom);
484 hotseatBarBottomPaddingPx + mInsets
[all...]
H A DPagedView.java149 protected final Rect mInsets = new Rect(); field in class:PagedView
483 - mInsets.top - mInsets.bottom;
492 - mInsets.left - mInsets.right;
537 widthSize - mInsets.left - mInsets.right, MeasureSpec.EXACTLY);
539 heightSize - mInsets.top - mInsets.bottom, MeasureSpec.EXACTLY);
619 final int verticalCenter = (getPaddingTop() + getMeasuredHeight() + mInsets
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/views/
H A DBottomUserEducationView.java40 private final Rect mInsets = new Rect(); field in class:BottomUserEducationView
81 int leftInset = insets.left - mInsets.left;
82 int rightInset = insets.right - mInsets.right;
83 int bottomInset = insets.bottom - mInsets.bottom;
84 mInsets.set(insets);
/packages/apps/Launcher3/src/com/android/launcher3/widget/
H A DWidgetsBottomSheet.java48 private Rect mInsets; field in class:WidgetsBottomSheet
57 mInsets = new Rect();
158 int leftInset = insets.left - mInsets.left;
159 int rightInset = insets.right - mInsets.right;
160 int bottomInset = insets.bottom - mInsets.bottom;
161 mInsets.set(insets);
H A DWidgetsFullSheet.java48 private final Rect mInsets = new Rect(); field in class:WidgetsFullSheet
103 mInsets.set(insets);
114 ((TopRoundedCornerView) mContent).setNavBarScrimHeight(mInsets.bottom);
121 if (mInsets.bottom > 0) {
126 2 * (mInsets.left + mInsets.right));
129 int heightUsed = mInsets.top + mLauncher.getDeviceProfile().edgeMarginPx;

Completed in 69 milliseconds