/frameworks/base/services/core/java/com/android/server/wm/ |
D | WindowFrames.java | 187 final Rect mContentInsets = new Rect(); field in WindowFrames 266 mContentInsets.setEmpty(); in calculateDockedDividerInsets() 293 InsetUtils.insetsBetweenFrames(mTmpRect, mContentFrame, mContentInsets); in calculateInsets() 305 mContentInsets.scale(scale); in scaleInsets() 325 mContentInsetsChanged |= !mLastContentInsets.equals(mContentInsets); in setReportResizeHints() 355 mLastContentInsets.set(mContentInsets); in updateLastInsetValues() 410 mContentInsets.writeToProto(proto, CONTENT_INSETS); in writeToProto() 434 + " content=" + mContentInsets.toShortString(sTmpSB) in dump() 446 return "ci=" + mContentInsets.toShortString() in getInsetsInfo() 454 + " " + mContentInsets.toShortString() in getInsetsChangedInfo()
|
D | TaskSnapshotSurface.java | 124 private final Rect mContentInsets = new Rect(); field in TaskSnapshotSurface 279 mContentInsets.set(contentInsets); in setFrames() 408 mContentInsets.left); in calculateSnapshotFrame() 494 private final Rect mContentInsets = new Rect(); field in TaskSnapshotSurface.SystemBarBackgroundPainter 529 mContentInsets.set(contentInsets); in setInsets() 538 return (int) (getColorViewTopInset(mStableInsets.top, mContentInsets.top) * mScale); in getStatusBarColorViewHeight() 562 mContentInsets.right) * mScale); in drawStatusBarBackground() 571 getNavigationBarRect(c.getWidth(), c.getHeight(), mStableInsets, mContentInsets, in drawNavigationBarBackground() local
|
/frameworks/base/core/java/android/widget/ |
D | Toolbar.java | 174 private RtlSpacingHelper mContentInsets; field in Toolbar 286 mContentInsets.setAbsolute(contentInsetLeft, contentInsetRight); in Toolbar() 290 mContentInsets.setRelative(contentInsetStart, contentInsetEnd); in Toolbar() 511 mContentInsets.setDirection(layoutDirection == LAYOUT_DIRECTION_RTL); in onRtlPropertiesChanged() 1234 mContentInsets.setRelative(contentInsetStart, contentInsetEnd); in setContentInsetsRelative() 1255 return mContentInsets != null ? mContentInsets.getStart() : 0; in getContentInsetStart() 1276 return mContentInsets != null ? mContentInsets.getEnd() : 0; in getContentInsetEnd() 1299 mContentInsets.setAbsolute(contentInsetLeft, contentInsetRight); in setContentInsetsAbsolute() 1320 return mContentInsets != null ? mContentInsets.getLeft() : 0; in getContentInsetLeft() 1341 return mContentInsets != null ? mContentInsets.getRight() : 0; in getContentInsetRight() [all …]
|
/frameworks/base/core/java/android/service/wallpaper/ |
D | WallpaperService.java | 180 final Rect mContentInsets = new Rect(); field in WallpaperService.Engine 708 out.print(" mContentInsets="); out.println(mContentInsets.toShortString()); in dump() 825 mDisplay.getDisplayId(), mWinFrame, mContentInsets, mStableInsets, in updateSurface() 851 View.VISIBLE, 0, -1, mWinFrame, mOverscanInsets, mContentInsets, in updateSurface() 874 mContentInsets.left += padding.left; in updateSurface() 875 mContentInsets.top += padding.top; in updateSurface() 876 mContentInsets.right += padding.right; in updateSurface() 877 mContentInsets.bottom += padding.bottom; in updateSurface() 903 insetsChanged |= !mDispatchedContentInsets.equals(mContentInsets); in updateSurface() 970 mDispatchedContentInsets.set(mContentInsets); in updateSurface()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarOverlayLayout.java | 78 private final Rect mContentInsets = new Rect(); field in ActionBarOverlayLayout 436 mContentInsets.set(mBaseContentInsets); 439 mContentInsets.top += topInset; 440 mContentInsets.bottom += bottomInset; 452 applyInsets(mContent, mContentInsets, true, true, true, true);
|
/frameworks/base/core/java/android/app/ |
D | ActivityManager.java | 1830 private final Rect mContentInsets; field in ActivityManager.TaskSnapshot 1853 mContentInsets = new Rect(contentInsets); in TaskSnapshot() 1870 mContentInsets = source.readParcelable(null /* classLoader */); 1915 return mContentInsets; 1977 dest.writeParcelable(mContentInsets, 0); 1995 + " mContentInsets=" + mContentInsets.toShortString()
|
/frameworks/base/core/java/android/view/ |
D | ViewRootImpl.java | 866 mAttachInfo.mContentInsets, mAttachInfo.mStableInsets, 886 mTranslator.translateRectInScreenToAppWindow(mAttachInfo.mContentInsets); 889 mPendingContentInsets.set(mAttachInfo.mContentInsets); 1870 mDispatchContentInsets.set(mAttachInfo.mContentInsets); in getWindowInsets() 2083 if (!mPendingContentInsets.equals(mAttachInfo.mContentInsets)) { in performTraversals() 2291 mAttachInfo.mContentInsets); in performTraversals() 2306 mAttachInfo.mContentInsets.set(mPendingContentInsets); in performTraversals() 2308 + mAttachInfo.mContentInsets); in performTraversals() 3864 final Rect ci = mAttachInfo.mContentInsets; in scrollToRectOrFocus()
|