Home
last modified time | relevance | path

Searched refs:inset (Results 1 – 25 of 122) sorted by relevance

12345

/frameworks/base/graphics/java/android/graphics/drawable/
DInsetDrawable.java78 public InsetDrawable(@Nullable Drawable drawable, int inset) { in InsetDrawable() argument
79 this(drawable, inset, inset, inset, inset); in InsetDrawable()
88 public InsetDrawable(@Nullable Drawable drawable, float inset) { in InsetDrawable() argument
89 this(drawable, inset, inset, inset, inset); in InsetDrawable()
194 final InsetValue inset = getInset(a, R.styleable.InsetDrawable_inset, new InsetValue()); in updateStateFromTypedArray() local
195 state.mInsetLeft = inset; in updateStateFromTypedArray()
196 state.mInsetTop = inset; in updateStateFromTypedArray()
197 state.mInsetRight = inset; in updateStateFromTypedArray()
198 state.mInsetBottom = inset; in updateStateFromTypedArray()
/frameworks/base/core/java/android/view/
DRoundScrollbarRenderer.java93 float inset = thumbWidth / 2 + mMaskThickness; in drawRoundScrollbars() local
95 bounds.left + inset, in drawRoundScrollbars()
96 bounds.top + inset, in drawRoundScrollbars()
97 bounds.right - inset, in drawRoundScrollbars()
98 bounds.bottom - inset); in drawRoundScrollbars()
DCutoutSpecification.java321 private void setSafeInset(int gravity, int inset) {
323 mSafeInsetLeft = inset;
325 mSafeInsetTop = inset;
327 mSafeInsetRight = inset;
329 mSafeInsetBottom = inset;
DWindowInsets.java934 public WindowInsets inset(Rect r) { in inset() method in WindowInsets
935 return inset(r.left, r.top, r.right, r.bottom); in inset()
954 public WindowInsets inset(@NonNull Insets insets) { in inset() method in WindowInsets
956 return inset(insets.left, insets.top, insets.right, insets.bottom); in inset()
981 public WindowInsets inset(@IntRange(from = 0) int left, @IntRange(from = 0) int top, in inset() method in WindowInsets
1010 : mDisplayCutout.inset(left, top, right, bottom), in insetUnchecked()
1013 : mRoundedCorners.inset(left, top, right, bottom), in insetUnchecked()
1016 : mPrivacyIndicatorBounds.inset(left, top, right, bottom), in insetUnchecked()
/frameworks/base/tests/WindowInsetsTests/src/com/google/android/test/windowinsetstests/
DChatActivity.java142 int inset = (int) (mDownInsets.bottom + (mDown - mCurrent)); in onCreate()
147 inset = max(inset, hidden); in onCreate()
148 inset = min(inset, shown); in onCreate()
150 Insets.of(0, 0, 0, inset), in onCreate()
151 1f, (inset - start) / (float)(end - start)); in onCreate()
/frameworks/base/packages/EasterEgg/src/com/android/egg/paint/
DBrushPropertyDrawable.kt69 val inset = _size / 12 // 2dp in a 24x24 icon in draw() constant
72 c.drawCircle(w/2, h/2, (r - inset) * _scale + 1 , wellPaint) in draw()
76 p.addCircle(w/2, h/2, r - inset, Path.Direction.CW) in draw()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/
DBadgedImageView.java136 final int inset = (bubbleSize - normalizedSize) / 2; in getOutline() local
137 outline.setOval(inset, inset, inset + normalizedSize, inset + normalizedSize); in getOutline()
/frameworks/base/packages/SystemUI/src/com/android/systemui/settings/brightness/
DBrightnessSliderView.java200 int inset = (mProgressDrawable.getIntrinsicHeight() - height) / 2; in applySliderScale() local
201 mProgressDrawable.setBounds(r.left, inset, r.right, inset + height); in applySliderScale()
/frameworks/base/core/java/android/gesture/
DGesture.java220 public Bitmap toBitmap(int width, int height, int inset, int color) { in toBitmap() argument
238 final float sx = (width - 2 * inset) / bounds.width(); in toBitmap()
239 final float sy = (height - 2 * inset) / bounds.height(); in toBitmap()
246 canvas.translate(inset, inset); in toBitmap()
/frameworks/av/media/libstagefright/renderfright/gl/
DGLSkiaShadowPort.cpp433 float inset = umbraInset + args.fInnerRadius; in fillInRRectVerts() local
436 position[vertexCount] = vec2(bounds.left + inset, bounds.top + inset); in fillInRRectVerts()
442 position[vertexCount] = vec2(bounds.right - inset, bounds.top + inset); in fillInRRectVerts()
448 position[vertexCount] = vec2(bounds.left + inset, bounds.bottom - inset); in fillInRRectVerts()
454 position[vertexCount] = vec2(bounds.right - inset, bounds.bottom - inset); in fillInRRectVerts()
/frameworks/native/libs/renderengine/gl/
DGLSkiaShadowPort.cpp433 float inset = umbraInset + args.fInnerRadius; in fillInRRectVerts() local
436 position[vertexCount] = vec2(bounds.left + inset, bounds.top + inset); in fillInRRectVerts()
442 position[vertexCount] = vec2(bounds.right - inset, bounds.top + inset); in fillInRRectVerts()
448 position[vertexCount] = vec2(bounds.left + inset, bounds.bottom - inset); in fillInRRectVerts()
454 position[vertexCount] = vec2(bounds.right - inset, bounds.bottom - inset); in fillInRRectVerts()
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
DRoundRectShape.java64 public RoundRectShape(@Nullable float[] outerRadii, @Nullable RectF inset, in RoundRectShape() argument
73 mInset = inset; in RoundRectShape()
76 if (inset != null) { in RoundRectShape()
/frameworks/libs/systemui/iconloaderlib/src/com/android/launcher3/icons/
DBaseIconFactory.java190 float inset = getExtraInsetFraction(); in createShapedIconBitmap() local
191 inset = inset / (1 + 2 * inset); in createShapedIconBitmap()
193 new InsetDrawable(d, inset, inset, inset, inset)); in createShapedIconBitmap()
/frameworks/base/core/tests/coretests/src/android/view/
DDisplayCutoutTest.java249 DisplayCutout cutout = mCutoutTop.inset(1, 2, 3, 4); in inset_immutable()
256 DisplayCutout cutout = createCutoutWithInsets(100, 0, 0, 0).inset(1, 2, 3, 4); in inset_insets_withLeftCutout()
266 DisplayCutout cutout = mCutoutTop.inset(1, 2, 3, 4); in inset_insets_withTopCutout()
276 DisplayCutout cutout = createCutoutWithInsets(0, 0, 100, 0).inset(1, 2, 3, 4); in inset_insets_withRightCutout()
286 DisplayCutout cutout = createCutoutWithInsets(0, 0, 0, 100).inset(1, 2, 3, 4); in inset_insets_withBottomCutout()
296 DisplayCutout cutout = createCutoutWaterfallOnly(Insets.of(0, 10, 0, 10)).inset(1, 2, 3, 4); in inset_insets_withWaterfallCutout()
306 DisplayCutout cutout = mCutoutTop.inset(0, 1000, 0, 0); in inset_insets_consumeInset()
318 DisplayCutout cutout = mCutoutTop.inset(1, 2, 3, 4); in inset_bounds()
/frameworks/base/tests/SilkFX/src/com/android/test/silkfx/hdr/
DGlowingCard.kt69 rect.inset(3.dp(), 3.dp()) in onDraw()
76 rect.inset(5.dp(), 5.dp()) in onDraw()
/frameworks/base/services/core/java/com/android/server/wm/
DInputWindowHandleWrapper.java242 void setSurfaceInset(int inset) { in setSurfaceInset() argument
243 if (mHandle.surfaceInset == inset) { in setSurfaceInset()
246 mHandle.surfaceInset = inset; in setSurfaceInset()
/frameworks/base/core/java/com/android/internal/widget/
DEmphasizedNotificationButton.java63 DrawableWrapper inset = (DrawableWrapper) mRipple.getDrawable(0); in EmphasizedNotificationButton() local
64 mBackground = (GradientDrawable) inset.getDrawable(); in EmphasizedNotificationButton()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
DGlifListLayout.java110 public void setDividerInset(int inset) { in setDividerInset() argument
111 listMixin.setDividerInset(inset); in setDividerInset()
DSetupWizardListLayout.java115 public void setDividerInset(int inset) { in setDividerInset() argument
116 listMixin.setDividerInset(inset); in setDividerInset()
/frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/
DSetupWizardRecyclerLayout.java135 public void setDividerInset(int inset) { in setDividerInset() argument
136 mRecyclerMixin.setDividerInset(inset); in setDividerInset()
DGlifRecyclerLayout.java144 public void setDividerInset(int inset) { in setDividerInset() argument
145 mRecyclerMixin.setDividerInset(inset); in setDividerInset()
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/common/
DDisplayLayout.java329 outBounds.inset(mStableInsets); in getStableBounds()
478 int inset = 0; in findCutoutInsetForSide() local
481 return Math.max(inset, boundingRect.bottom); in findCutoutInsetForSide()
483 return Math.max(inset, display.getHeight() - boundingRect.top); in findCutoutInsetForSide()
485 return Math.max(inset, boundingRect.right); in findCutoutInsetForSide()
487 return Math.max(inset, display.getWidth() - boundingRect.left); in findCutoutInsetForSide()
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/template/
DListMixin.java138 public void setDividerInset(int inset) { in setDividerInset() argument
139 setDividerInsets(inset, 0); in setDividerInset()
/frameworks/base/core/java/android/window/
DWindowMetricsHelper.java46 result.inset(windowInsets.getInsetsIgnoringVisibility(navigationBars() | displayCutout())); in getBoundsExcludingNavigationBarAndCutout()
/frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/template/
DRecyclerMixin.java180 public void setDividerInset(int inset) { in setDividerInset() argument
181 setDividerInsets(inset, 0); in setDividerInset()

12345