Searched refs:insetRight (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/tests/coretests/src/com/android/internal/widget/
H A DBackgroundFallbackTest.java200 int insetRight = 0;
228 insetRight = NAV_SIZE;
233 mContentMock = mockView(0, 0, SCREEN_WIDTH - insetLeft - insetRight,
235 mContentContainerMock = mockView(0, 0, SCREEN_WIDTH - insetLeft - insetRight,
237 mContentRootMock = mockView(insetLeft, insetTop, SCREEN_WIDTH - insetRight,
/frameworks/base/services/core/java/com/android/server/wm/utils/
H A DWmDisplayCutout.java61 public WmDisplayCutout inset(int insetLeft, int insetTop, int insetRight, int insetBottom) { argument
62 DisplayCutout newInner = mInner.inset(insetLeft, insetTop, insetRight, insetBottom);
69 mFrameSize.getWidth() - insetLeft - insetRight,
/frameworks/base/core/java/android/view/
H A DDisplayCutout.java277 public DisplayCutout inset(int insetLeft, int insetTop, int insetRight, int insetBottom) { argument
279 || insetLeft == 0 && insetTop == 0 && insetRight == 0 && insetBottom == 0) {
297 if (insetRight > 0 || safeInsets.right > 0) {
298 safeInsets.right = atLeastZero(safeInsets.right - insetRight);
/frameworks/base/services/core/java/com/android/server/wm/
H A DTaskSnapshotLoader.java91 new Rect(proto.insetLeft, proto.insetTop, proto.insetRight, proto.insetBottom),
H A DTaskSnapshotPersister.java316 proto.insetRight = mSnapshot.getContentInsets().right;
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/
H A DWindowFrameTests.java308 final int insetRight = insetLeft + (taskRight - taskLeft);
310 task.mInsetBounds.set(insetLeft, insetTop, insetRight, insetBottom);
313 contentInsetRight = insetRight - cfRight;
/frameworks/base/graphics/java/android/graphics/drawable/
H A DInsetDrawable.java95 * @param insetRight Right inset in pixels.
99 int insetRight, int insetBottom) {
104 mState.mInsetRight = new InsetValue(0f, insetRight);
98 InsetDrawable(@ullable Drawable drawable, int insetLeft, int insetTop, int insetRight, int insetBottom) argument
H A DVectorDrawable.java780 final int insetRight = a.getDimensionPixelOffset(
784 state.mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom);
1107 final int insetRight = Drawable.scaleFromDensity(
1111 mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom);
H A DGradientDrawable.java1334 final int insetRight = a.getDimensionPixelSize(
1338 state.mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom);

Completed in 77 milliseconds