Searched defs:surfaceInsets (Results 1 - 3 of 3) sorted by relevance

/frameworks/base/core/java/android/view/
H A DHardwareRenderer.java378 * @param surfaceInsets The drawing surface insets to apply
383 boolean initializeIfNeeded(int width, int height, Surface surface, Rect surfaceInsets) argument
389 setup(width, height, surfaceInsets);
402 * @param surfaceInsets The drawing surface insets to apply
404 abstract void setup(int width, int height, Rect surfaceInsets); argument
H A DThreadedRenderer.java193 void setup(int width, int height, Rect surfaceInsets) { argument
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
[all...]
H A DWindowManager.java1334 public final Rect surfaceInsets = new Rect(); field in class:WindowManager.LayoutParams
1627 out.writeInt(surfaceInsets.left);
1628 out.writeInt(surfaceInsets.top);
1629 out.writeInt(surfaceInsets.right);
1630 out.writeInt(surfaceInsets.bottom);
1675 surfaceInsets.left = in.readInt();
1676 surfaceInsets.top = in.readInt();
1677 surfaceInsets.right = in.readInt();
1678 surfaceInsets.bottom = in.readInt();
1856 if (!surfaceInsets
[all...]

Completed in 651 milliseconds