HomeSort by relevance Sort by last modified time
    Searched refs:surfaceInsets (Results 1 - 7 of 7) sorted by null

  /frameworks/base/core/java/android/view/
HardwareRenderer.java 378 * @param surfaceInsets The drawing surface insets to apply
384 Surface surface, Rect surfaceInsets) throws OutOfResourcesException {
389 setup(width, height, attachInfo, surfaceInsets);
403 * @param surfaceInsets The drawing surface insets to apply
405 abstract void setup(int width, int height, View.AttachInfo attachInfo, Rect surfaceInsets);
ThreadedRenderer.java 195 void setup(int width, int height, AttachInfo attachInfo, Rect surfaceInsets) {
199 if (surfaceInsets != null && (surfaceInsets.left != 0 || surfaceInsets.right != 0
200 || surfaceInsets.top != 0 || surfaceInsets.bottom != 0)) {
202 mInsetLeft = surfaceInsets.left;
203 mInsetTop = surfaceInsets.top;
204 mSurfaceWidth = width + mInsetLeft + surfaceInsets.right;
205 mSurfaceHeight = height + mInsetTop + surfaceInsets.bottom
    [all...]
WindowManager.java     [all...]
ViewRootImpl.java 480 attrs.surfaceInsets.set(surfaceInset, surfaceInset, surfaceInset, surfaceInset);
751 final Rect insets = attrs.surfaceInsets;
775 final int oldInsetLeft = mWindowAttributes.surfaceInsets.left;
776 final int oldInsetTop = mWindowAttributes.surfaceInsets.top;
777 final int oldInsetRight = mWindowAttributes.surfaceInsets.right;
778 final int oldInsetBottom = mWindowAttributes.surfaceInsets.bottom
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowStateAnimator.java 819 width += attrs.surfaceInsets.left + attrs.surfaceInsets.right;
820 height += attrs.surfaceInsets.top + attrs.surfaceInsets.bottom
    [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 667 mLayout.surfaceInsets.set(mIWallpaperEngine.mDisplayPadding);
668 mLayout.surfaceInsets.left += mOutsets.left;
669 mLayout.surfaceInsets.top += mOutsets.top;
670 mLayout.surfaceInsets.right += mOutsets.right;
671 mLayout.surfaceInsets.bottom += mOutsets.bottom;
673 mLayout.surfaceInsets.set(0, 0, 0, 0);
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java     [all...]

Completed in 222 milliseconds