/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/ |
D | CredentialPasswordView.kt | 23 private var bottomInset: Int = 0 variable 57 if (bottomInset != imeBottomInset) { in onApplyWindowInsets() 61 bottomInset > 0 && resources.configuration.orientation == ORIENTATION_LANDSCAPE in onApplyWindowInsets()
|
/frameworks/base/apct-tests/perftests/core/src/android/view/ |
D | CutoutSpecificationBenchmark.java | 132 int bottomInset = 0; in oldMethodParsingSpec() local 147 bottomInset = displayHeight - boundBottom.top; in oldMethodParsingSpec() 149 safeInset.bottom = bottomInset; in oldMethodParsingSpec()
|
/frameworks/base/core/java/com/android/internal/widget/ |
D | ActionBarOverlayLayout.java | 432 int bottomInset = 0; 480 bottomInset = mActionBarHeight; 482 bottomInset += mSystemInsets.bottom; 485 bottomInset = mActionBarBottom.getMeasuredHeight(); 499 mContentInsets.bottom = Math.max(mContentInsets.bottom, bottomInset); 502 mContentInsets.bottom += bottomInset; 505 mInnerInsets = mInnerInsets.inset(0 /* left */, topInset, 0 /* right */, bottomInset); 513 Math.max(mInnerInsets.getSystemWindowInsetBottom(), bottomInset) 520 mInnerInsets.getSystemWindowInsetBottom() + bottomInset
|
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/ |
D | SystemBarHelper.java | 332 int bottomInset = insets.getSystemWindowInsetBottom(); in onApplyWindowInsets() local 342 bottomInset = 0; in onApplyWindowInsets() 349 bottomInset); in onApplyWindowInsets()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
D | QsFrameTranslateController.java | 39 public abstract void translateQsFrame(View qsFrame, QS qs, int bottomInset); in translateQsFrame() argument
|
D | QsFrameTranslateImpl.java | 42 public void translateQsFrame(View qsFrame, QS qs, int bottomInset) { in translateQsFrame() argument
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/ |
D | BiometricViewSizeBinder.kt | 319 val bottomInset = in <lambda>() constant 323 mediumConstraintSet.setGuidelineEnd(R.id.bottomGuideline, bottomInset) in <lambda>() 553 val bottomInset = in <lambda>() constant 561 bottomInset) / 2f in <lambda>() 566 bottomInset in <lambda>() 574 newHeight + bottomInset, in <lambda>()
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/binder/ |
D | KeyguardBottomAreaViewBinder.kt | 124 val bottomInset = windowInsets.displayCutout?.safeInsetBottom ?: 0 in <lambda>() constant 133 marginBottom + bottomInset in <lambda>() 140 val bottomInset = windowInsets.displayCutout?.safeInsetBottom ?: 0 in <lambda>() constant 149 marginBottom + bottomInset in <lambda>()
|
/frameworks/base/core/java/android/view/ |
D | ImeBackAnimationController.java | 183 int bottomInset = (int) ((float) animation.getAnimatedValue()); in startPostCommitAnim() 185 mWindowInsetsAnimationController.setInsetsAndAlpha(Insets.of(0, 0, 0, bottomInset), in startPostCommitAnim()
|
D | DisplayCutout.java | 1402 int bottomInset = Math.max(waterFallInsets.bottom, findCutoutInsetForSide( 1405 return new Rect(leftInset, topInset, rightInset, bottomInset);
|
/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/bubbles/ |
D | BubblePositioner.java | 628 final float bottomInset = mScreenRect.bottom - bottomHeight; in getExpandedBubbleYForIme() local 633 if (rowBottom > bottomInset) { in getExpandedBubbleYForIme() 635 float translationY = rowBottom - bottomInset; in getExpandedBubbleYForIme() 646 translationY = rowBottomNoO - bottomInset; in getExpandedBubbleYForIme()
|
/frameworks/base/core/java/com/android/internal/policy/ |
D | DecorView.java | 1038 public static boolean isNavBarToRightEdge(int bottomInset, int rightInset) { 1039 return bottomInset == 0 && rightInset > 0; 1042 public static boolean isNavBarToLeftEdge(int bottomInset, int leftInset) { in isNavBarToLeftEdge() argument 1043 return bottomInset == 0 && leftInset > 0; in isNavBarToLeftEdge() 1046 public static int getNavBarSize(int bottomInset, int rightInset, int leftInset) { in getNavBarSize() argument 1047 return isNavBarToRightEdge(bottomInset, rightInset) ? rightInset in getNavBarSize() 1048 : isNavBarToLeftEdge(bottomInset, leftInset) ? leftInset : bottomInset; in getNavBarSize() 1053 final int bottomInset = (int) (systemBarInsets.bottom * scale); in getNavigationBarRect() local 1056 final int size = getNavBarSize(bottomInset, rightInset, leftInset); in getNavigationBarRect() 1057 if (isNavBarToRightEdge(bottomInset, rightInset)) { in getNavigationBarRect() [all …]
|
/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
D | KeyguardSecurityContainer.java | 657 int bottomInset = insets.getInsetsIgnoringVisibility(systemBars()).bottom; in onApplyWindowInsets() local 659 int inset = max(bottomInset, imeInset); in onApplyWindowInsets()
|