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

  /frameworks/base/core/java/android/view/
HardwareRenderer.java 378 * @param surfaceInsets The drawing surface insets to apply
383 boolean initializeIfNeeded(int width, int height, Surface surface, Rect surfaceInsets)
389 setup(width, height, surfaceInsets);
402 * @param surfaceInsets The drawing surface insets to apply
404 abstract void setup(int width, int height, Rect surfaceInsets);
ThreadedRenderer.java 193 void setup(int width, int height, Rect surfaceInsets) {
197 if (surfaceInsets != null && (surfaceInsets.left != 0 || surfaceInsets.right != 0
198 || surfaceInsets.top != 0 || surfaceInsets.bottom != 0)) {
200 mInsetLeft = surfaceInsets.left;
201 mInsetTop = surfaceInsets.top;
202 mSurfaceWidth = width + mInsetLeft + surfaceInsets.right;
203 mSurfaceHeight = height + mInsetTop + surfaceInsets.bottom
    [all...]
WindowManager.java     [all...]
ViewRootImpl.java 476 attrs.surfaceInsets.set(surfaceInset, surfaceInset, surfaceInset, surfaceInset);
734 final Rect insets = attrs.surfaceInsets;
758 final int oldInsetLeft = mWindowAttributes.surfaceInsets.left;
759 final int oldInsetTop = mWindowAttributes.surfaceInsets.top;
760 final int oldInsetRight = mWindowAttributes.surfaceInsets.right;
761 final int oldInsetBottom = mWindowAttributes.surfaceInsets.bottom;
    [all...]
  /frameworks/base/services/core/java/com/android/server/wm/
WindowStateAnimator.java     [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 682 mLayout.surfaceInsets.set(mIWallpaperEngine.mDisplayPadding);
684 mLayout.surfaceInsets.set(0, 0, 0, 0);
    [all...]

Completed in 2310 milliseconds