/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/ |
H A D | IntegralToStringPerfTest.java | 36 private static final int LARGE = 12345678; field in IntegralToStringPerfTest 58 Integer.toString(LARGE); in time_IntegerToString_large() 82 Integer.toString(LARGE, 2); in time_IntegerToString2_large() 106 Integer.toString(LARGE, 10); in time_IntegerToString10_large() 130 Integer.toString(LARGE, 16); in time_IntegerToString16_large() 154 Integer.toBinaryString(LARGE); in time_IntegerToBinaryString_large() 178 Integer.toHexString(LARGE); in time_IntegerToHexString_large() 202 new StringBuilder().append(LARGE); in time_StringBuilder_large() 226 String.format("%d", LARGE); in time_Formatter_large()
|
H A D | RealToStringPerfTest.java | 36 private static final float LARGE = -123.45e36f; field in RealToStringPerfTest 98 Float.toString(LARGE); in timeFloat_toString_large() 122 new StringBuilder().append(LARGE); in timeStringBuilder_large() 146 String.format("%f", LARGE); in timeFormatter_large() 170 String.format("%.2f", LARGE); in timeFormatter_dot2f_large()
|
/aosp14/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/ |
H A D | CameraPairwiseTest.java | 60 public enum PictureSize { SMALL, MEDIUM, LARGE }; enumConstant 140 PictureSize.LARGE, Geotagging.ON); in testCameraPairwiseScenario02() 170 SceneMode.AUTO, PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario05() 210 PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario09() 230 PictureSize.LARGE, Geotagging.ON); in testCameraPairwiseScenario11() 240 PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario12() 300 PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario18() 310 PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario19() 470 case LARGE: in genericPairwiseTestCase()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/viewmodel/ |
H A D | PromptSize.kt | 26 LARGE, 42 get() = this != null && this == PromptSize.LARGE
|
H A D | PromptViewModel.kt | 124 forceLarge -> PromptSize.LARGE 147 if (size != PromptSize.LARGE) {
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/ |
H A D | KeyguardClockSwitchTest.java | 22 import static com.android.keyguard.KeyguardClockSwitch.LARGE; 187 mKeyguardClockSwitch.switchToClock(LARGE, /* animate */ true); in switchingToBigClockWithAnimation_makesSmallClockDisappear() 201 mKeyguardClockSwitch.switchToClock(LARGE, /* animate */ false); in switchingToBigClockNoAnimation_makesSmallClockDisappear() 264 assertThat(mKeyguardClockSwitch.switchToClock(LARGE, /* animate */ true)).isTrue(); in switchingToBigClock_returnsTrueOnlyWhenItWasNotVisibleBefore() 265 assertThat(mKeyguardClockSwitch.switchToClock(LARGE, /* animate */ true)).isFalse(); in switchingToBigClock_returnsTrueOnlyWhenItWasNotVisibleBefore()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/keyguard/ |
H A D | KeyguardClockSwitch.java | 53 @IntDef({LARGE, SMALL}) 57 public static final int LARGE = 0; field in KeyguardClockSwitch 252 updateClockViews(mDisplayedClockSize == LARGE, animate); in updateStatusArea() 437 updateClockViews(clockSize == LARGE, animate); in switchToClock() 454 post(() -> updateClockViews(mDisplayedClockSize == LARGE, mAnimateOnLayout)); in onLayout() 458 post(() -> updateClockViews(mDisplayedClockSize == LARGE, mAnimateOnLayout)); in onLayout()
|
H A D | KeyguardClockSwitchController.java | 22 import static com.android.keyguard.KeyguardClockSwitch.LARGE; 260 displayClock(LARGE, /* animate= */ false); in onViewAttached() 411 if (!mCanShowDoubleLineClock && clockSize == KeyguardClockSwitch.LARGE) { in displayClock() 420 if (clock != null && animate && appeared && clockSize == LARGE) { in displayClock() 594 pw.println("currentClockSizeLarge: " + (mCurrentClockSize == LARGE)); in dump() 619 return ((mCurrentClockSize == LARGE) ? clock.getLargeClock() : clock.getSmallClock()) in clockHasCustomWeatherDataDisplay()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/ |
H A D | NotificationPanelViewControllerTest.java | 20 import static com.android.keyguard.KeyguardClockSwitch.LARGE; 667 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testSwitchesToCorrectClockInSinglePaneShade() 682 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testSwitchesToCorrectClockInSplitShade() 687 .displayClock(LARGE, /* animate */ true); in testSwitchesToCorrectClockInSplitShade() 699 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testHasNotifications_switchesToLargeClockWhenEnteringSplitShade() 709 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testNoNotifications_switchesToLargeClockWhenEnteringSplitShade() 733 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testNoNotifications_switchesToLargeClockWhenExitingSplitShade() 747 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate= */ true); in clockSize_mediaShowing_inSplitShade_onAod_isLarge() 816 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ false); in testSwitchesToBigClockInSplitShadeOnAodAnimateDisabled() 835 verify(mKeyguardStatusViewController, never()).displayClock(LARGE, /* animate */ true); in testDisplaysSmallClockOnLockscreenInSplitShadeWhenMediaIsPlaying()
|
H A D | NotificationPanelViewControllerWithCoroutinesTest.kt | 27 import com.android.keyguard.KeyguardClockSwitch.LARGE 122 verify(mKeyguardStatusViewController, times(3)).displayClock(LARGE, /* animate */ true)
|
H A D | NotificationPanelViewControllerBaseTest.java | 21 import static com.android.keyguard.KeyguardClockSwitch.LARGE; 687 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in setup()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/ |
H A D | WindowMagnificationSettings.java | 121 MagnificationSize.LARGE, 129 int LARGE = 3; field 259 setMagnifierSize(MagnificationSize.LARGE); 695 } else if (mLastSelectedButtonIndex == MagnificationSize.LARGE) { in updateSelectedButton() 706 } else if (index == MagnificationSize.LARGE) { in updateSelectedButton()
|
H A D | WindowMagnificationController.java | 342 mMagnificationSizeScaleOptions.put(MagnificationSize.LARGE, 2.5f); in setupMagnificationSizeScaleOptions()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
H A D | MenuViewAppearance.java | 75 MenuSizeType.LARGE 80 int LARGE = 1; field
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/DumpTest/ |
H A D | components_expected_proto.txt | 45 screens: LARGE
|
H A D | components_full_proto.txt | 45 screens: LARGE
|
/aosp14/frameworks/base/tools/aapt2/ |
H A D | ApkInfo.proto | 153 LARGE = 3; enumerator
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/ |
H A D | BiometricViewBinder.kt | 242 size == PromptSize.LARGE -> false
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ui/viewmodel/ |
H A D | PromptViewModelTest.kt | 705 assertThat(size).isEqualTo(PromptSize.LARGE)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/ |
H A D | NotificationPanelViewController.java | 25 import static com.android.keyguard.KeyguardClockSwitch.LARGE; 1674 return LARGE; in computeDesiredClockSizeForSingleShade() 1692 return LARGE; in computeDesiredClockSizeForSplitShade()
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/accessibility/ |
H A D | WindowMagnificationControllerTest.java | 1253 WindowMagnificationSettings.MagnificationSize.LARGE); in changeMagnificationSize_expectedWindowSize()
|