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

/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskSnapshotSurface.java117 private final Rect mContentInsets = new Rect(); field in class:TaskSnapshotSurface
269 mContentInsets.set(contentInsets);
377 mContentInsets.left);
462 private final Rect mContentInsets = new Rect(); field in class:TaskSnapshotSurface.SystemBarBackgroundPainter
487 mContentInsets.set(contentInsets);
496 return getColorViewTopInset(mStableInsets.top, mContentInsets.top);
518 mContentInsets.right);
527 getNavigationBarRect(c.getWidth(), c.getHeight(), mStableInsets, mContentInsets,
H A DWindowState.java267 final Rect mContentInsets = new Rect(); field in class:WindowState
959 mContentInsets.setEmpty();
969 mContentInsets.set(mContentFrame.left - mFrame.left,
1004 mContentInsets.scale(mInvGlobalScale);
1028 + " ci=" + mContentInsets.toShortString()
1120 mContentInsetsChanged |= !mLastContentInsets.equals(mContentInsets);
1179 + " " + mContentInsets.toShortString()
3538 pw.print(" content="); mContentInsets.printShortString(pw);
4588 mLastContentInsets.set(mContentInsets);
/frameworks/base/core/java/com/android/internal/widget/
H A DActionBarOverlayLayout.java77 private final Rect mContentInsets = new Rect(); field in class:ActionBarOverlayLayout
432 mContentInsets.set(mBaseContentInsets);
435 mContentInsets.top += topInset;
436 mContentInsets.bottom += bottomInset;
441 applyInsets(mContent, mContentInsets, true, true, true, true);
/frameworks/support/v7/appcompat/src/android/support/v7/widget/
H A DActionBarOverlayLayout.java81 private final Rect mContentInsets = new Rect(); field in class:ActionBarOverlayLayout
380 mContentInsets.set(mBaseContentInsets);
383 mContentInsets.top += topInset;
384 mContentInsets.bottom += bottomInset;
389 applyInsets(mContent, mContentInsets, true, true, true, true);
H A DToolbar.java172 private RtlSpacingHelper mContentInsets; field in class:Toolbar
285 mContentInsets.setAbsolute(contentInsetLeft, contentInsetRight);
289 mContentInsets.setRelative(contentInsetStart, contentInsetEnd);
486 mContentInsets.setDirection(layoutDirection == ViewCompat.LAYOUT_DIRECTION_RTL);
1104 mContentInsets.setRelative(contentInsetStart, contentInsetEnd);
1124 return mContentInsets != null ? mContentInsets.getStart() : 0;
1144 return mContentInsets != null ? mContentInsets.getEnd() : 0;
1167 mContentInsets
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java169 final Rect mContentInsets = new Rect(); field in class:WallpaperService.Engine
651 out.print(" mContentInsets="); out.println(mContentInsets.toShortString());
752 Display.DEFAULT_DISPLAY, mContentInsets, mStableInsets, mOutsets,
777 View.VISIBLE, 0, mWinFrame, mOverscanInsets, mContentInsets,
795 mContentInsets.left += padding.left;
796 mContentInsets.top += padding.top;
797 mContentInsets.right += padding.right;
798 mContentInsets.bottom += padding.bottom;
819 insetsChanged |= !mDispatchedContentInsets.equals(mContentInsets);
[all...]
/frameworks/base/core/java/android/widget/
H A DToolbar.java165 private RtlSpacingHelper mContentInsets; field in class:Toolbar
275 mContentInsets.setAbsolute(contentInsetLeft, contentInsetRight);
279 mContentInsets.setRelative(contentInsetStart, contentInsetEnd);
495 mContentInsets.setDirection(layoutDirection == LAYOUT_DIRECTION_RTL);
1118 mContentInsets.setRelative(contentInsetStart, contentInsetEnd);
1138 return mContentInsets != null ? mContentInsets.getStart() : 0;
1158 return mContentInsets != null ? mContentInsets.getEnd() : 0;
1181 mContentInsets
[all...]
/frameworks/base/core/java/android/app/
H A DActivityManager.java2317 private final Rect mContentInsets; field in class:ActivityManager.TaskSnapshot
2325 mContentInsets = new Rect(contentInsets);
2333 mContentInsets = source.readParcelable(null /* classLoader */);
2357 return mContentInsets;
2383 dest.writeParcelable(mContentInsets, 0);
2391 + " mContentInsets=" + mContentInsets.toShortString()
/frameworks/base/core/java/android/view/
H A DView.java25275 final Rect mContentInsets = new Rect(); field in class:View.AttachInfo

Completed in 181 milliseconds