Home
last modified time | relevance | path

Searched refs:LARGE (Results 1 – 21 of 21) sorted by relevance

/aosp14/frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/
H A DIntegralToStringPerfTest.java36 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 DRealToStringPerfTest.java36 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 DCameraPairwiseTest.java60 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 DPromptSize.kt26 LARGE,
42 get() = this != null && this == PromptSize.LARGE
H A DPromptViewModel.kt124 forceLarge -> PromptSize.LARGE
147 if (size != PromptSize.LARGE) {
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
H A DKeyguardClockSwitchTest.java22 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 DKeyguardClockSwitch.java53 @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 DKeyguardClockSwitchController.java22 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 DNotificationPanelViewControllerTest.java20 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 DNotificationPanelViewControllerWithCoroutinesTest.kt27 import com.android.keyguard.KeyguardClockSwitch.LARGE
122 verify(mKeyguardStatusViewController, times(3)).displayClock(LARGE, /* animate */ true)
H A DNotificationPanelViewControllerBaseTest.java21 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 DWindowMagnificationSettings.java121 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 DWindowMagnificationController.java342 mMagnificationSizeScaleOptions.put(MagnificationSize.LARGE, 2.5f); in setupMagnificationSizeScaleOptions()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
H A DMenuViewAppearance.java75 MenuSizeType.LARGE
80 int LARGE = 1; field
/aosp14/frameworks/base/tools/aapt2/integration-tests/DumpTest/
H A Dcomponents_expected_proto.txt45 screens: LARGE
H A Dcomponents_full_proto.txt45 screens: LARGE
/aosp14/frameworks/base/tools/aapt2/
H A DApkInfo.proto153 LARGE = 3; enumerator
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/binder/
H A DBiometricViewBinder.kt242 size == PromptSize.LARGE -> false
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/biometrics/ui/viewmodel/
H A DPromptViewModelTest.kt705 assertThat(size).isEqualTo(PromptSize.LARGE)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/shade/
H A DNotificationPanelViewController.java25 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 DWindowMagnificationControllerTest.java1253 WindowMagnificationSettings.MagnificationSize.LARGE); in changeMagnificationSize_expectedWindowSize()