/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/ |
D | DrawableLayoutDirectionHelper.java | 35 Drawable drawable, int insetStart, int insetTop, int insetEnd, int insetBottom, View view) { in createRelativeInsetDrawable() argument 40 drawable, insetStart, insetTop, insetEnd, insetBottom, isRtl); in createRelativeInsetDrawable() 53 int insetBottom, in createRelativeInsetDrawable() argument 61 drawable, insetStart, insetTop, insetEnd, insetBottom, isRtl); in createRelativeInsetDrawable() 75 int insetBottom, in createRelativeInsetDrawable() argument 82 insetBottom, in createRelativeInsetDrawable() 91 int insetBottom, in createRelativeInsetDrawable() argument 94 return new InsetDrawable(drawable, insetEnd, insetTop, insetStart, insetBottom); in createRelativeInsetDrawable() 96 return new InsetDrawable(drawable, insetStart, insetTop, insetEnd, insetBottom); in createRelativeInsetDrawable()
|
/frameworks/base/core/java/android/view/ |
D | PrivacyIndicatorBounds.java | 80 int insetBottom) { in inset() argument 81 if (insetLeft == 0 && insetTop == 0 && insetRight == 0 && insetBottom == 0) { in inset() 87 insetRect(mStaticBounds[i], insetLeft, insetTop, insetRight, insetBottom); in inset() 93 int insetBottom) { in insetRect() argument 100 int bottom = Math.max(top, orig.bottom - insetBottom); in insetRect()
|
D | RoundedCorners.java | 357 int insetBottom = roundedCornerFrame.bottom - frame.bottom; in insetWithFrame() local 388 insetRight, insetBottom); in insetWithFrame() 398 public RoundedCorners inset(int insetLeft, int insetTop, int insetRight, int insetBottom) { in inset() argument 403 insetTop, insetRight, insetBottom); in inset() 409 int centerY, int insetLeft, int insetTop, int insetRight, int insetBottom) { in insetRoundedCorner() argument 423 hasRoundedCorner = radius > insetBottom && radius > insetRight; in insetRoundedCorner() 426 hasRoundedCorner = radius > insetBottom && radius > insetLeft; in insetRoundedCorner()
|
D | InsetsState.java | 195 final int insetBottom = mDisplayFrame.bottom - frame.bottom; in calculateRelativeCutout() local 199 && insetBottom >= raw.getSafeInsetBottom()) { in calculateRelativeCutout() 202 return raw.inset(insetLeft, insetTop, insetRight, insetBottom); in calculateRelativeCutout() 228 final int insetBottom = mDisplayFrame.bottom - frame.bottom; in calculateRelativeRoundedCorners() local 229 return mRoundedCorners.inset(insetLeft, insetTop, insetRight, insetBottom); in calculateRelativeRoundedCorners() 242 final int insetBottom = mDisplayFrame.bottom - frame.bottom; in calculateRelativePrivacyIndicatorBounds() local 243 return mPrivacyIndicatorBounds.inset(insetLeft, insetTop, insetRight, insetBottom); in calculateRelativePrivacyIndicatorBounds()
|
D | DisplayCutout.java | 942 public DisplayCutout inset(int insetLeft, int insetTop, int insetRight, int insetBottom) { in inset() argument 943 if (insetLeft == 0 && insetTop == 0 && insetRight == 0 && insetBottom == 0 in inset() 948 Rect safeInsets = insetInsets(insetLeft, insetTop, insetRight, insetBottom, in inset() 957 Rect waterfallInsets = insetInsets(insetLeft, insetTop, insetRight, insetBottom, in inset() 971 private Rect insetInsets(int insetLeft, int insetTop, int insetRight, int insetBottom, in insetInsets() argument 978 if (insetBottom > 0 || insets.bottom > 0) { in insetInsets() 979 insets.bottom = atLeastZero(insets.bottom - insetBottom); in insetInsets()
|
D | WindowInsets.java | 1283 int insetLeft, int insetTop, int insetRight, int insetBottom, int frameWidth, in insetBoundingRects() argument 1285 if (insetLeft == 0 && insetTop == 0 && insetRight == 0 && insetBottom == 0) { in insetBoundingRects() 1295 insetLeft, insetTop, insetRight, insetBottom, frameWidth, frameHeight); in insetBoundingRects() 1321 int insetBottom, int frameWidth, int frameHeight) { in insetRect() argument 1329 frameHeight - insetBottom); in insetRect()
|
/frameworks/base/core/tests/coretests/src/com/android/internal/widget/ |
D | BackgroundFallbackTest.java | 202 int insetBottom = 0; in setUpViewHierarchy() local 215 insetBottom = NAV_SIZE; in setUpViewHierarchy() 235 SCREEN_HEIGHT - insetTop - insetBottom, null, VISIBLE, emptyList()); in setUpViewHierarchy() 237 SCREEN_HEIGHT - insetTop - insetBottom, null, VISIBLE, asList(mContentMock)); in setUpViewHierarchy() 239 SCREEN_HEIGHT - insetBottom, null, VISIBLE, asList(mContentContainerMock)); in setUpViewHierarchy()
|
/frameworks/base/graphics/java/android/graphics/drawable/ |
D | InsetDrawable.java | 102 int insetRight, int insetBottom) { in InsetDrawable() argument 108 mState.mInsetBottom = new InsetValue(0f, insetBottom); in InsetDrawable()
|
D | VectorDrawable.java | 803 final int insetBottom = a.getDimensionPixelOffset( in updateStateFromTypedArray() local 805 state.mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom); in updateStateFromTypedArray() 1131 final int insetBottom = Drawable.scaleFromDensity( in applyDensityScaling() local 1133 mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom); in applyDensityScaling()
|
D | GradientDrawable.java | 1524 final int insetBottom = a.getDimensionPixelSize( 1526 state.mOpticalInsets = Insets.of(insetLeft, insetTop, insetRight, insetBottom);
|
/frameworks/base/services/core/java/com/android/server/wm/ |
D | AppSnapshotLoader.java | 202 new Rect(proto.insetLeft, proto.insetTop, proto.insetRight, proto.insetBottom), in loadTask()
|
D | SnapshotPersistQueue.java | 306 proto.insetBottom = mSnapshot.getContentInsets().bottom; in writeProto()
|
/frameworks/native/services/surfaceflinger/CompositionEngine/src/ |
D | OutputLayer.cpp | 174 const float insetBottom = (winHeight - winCrop.bottom) * yScale; in calculateOutputSourceCrop() local 179 crop.bottom -= insetBottom; in calculateOutputSourceCrop()
|
/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |
/frameworks/opt/setupwizard/tools/docs/ |
D | android-22.txt | 702 field public static final int insetBottom = 16843194; // 0x10101ba
|
/frameworks/base/core/api/ |
D | current.txt | 1002 field public static final int insetBottom = 16843194; // 0x10101ba
|
/frameworks/base/boot/hiddenapi/ |
D | hiddenapi-max-target-o.txt | 75321 Lcom/android/internal/R$attr;->insetBottom:I
|