Home
last modified time | relevance | path

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

12

/frameworks/base/apct-tests/perftests/core/src/android/libcore/regression/
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()
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()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/shared/model/
DClockSize.kt27 LARGE(KeyguardClockSwitch.LARGE);
39 return LARGE in fromLegacy()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/viewmodel/
DKeyguardClockViewModelTest.kt93 keyguardClockRepository.setClockSize(ClockSize.LARGE) in currentClockLayout_splitShadeOn_clockCentered_largeClock()
108 keyguardClockRepository.setClockSize(ClockSize.LARGE) in currentClockLayout_splitShadeOn_clockNotCentered_largeClock_splitShadeLargeClock()
150 keyguardClockRepository.setClockSize(ClockSize.LARGE) in currentClockLayout_singleShade_largeClock_largeClock()
163 keyguardClockRepository.setClockSize(ClockSize.LARGE) in hasCustomPositionUpdatedAnimation_withConfigTrue_isTrue()
178 keyguardClockRepository.setClockSize(ClockSize.LARGE) in hasCustomPositionUpdatedAnimation_withConfigFalse_isFalse()
193 keyguardClockRepository.setClockSize(ClockSize.LARGE) in testClockSize_alwaysSmallClockSize()
210 keyguardClockRepository.setClockSize(ClockSize.LARGE) in testClockSize_dynamicClockSize()
211 assertThat(value).isEqualTo(ClockSize.LARGE) in testClockSize_dynamicClockSize()
219 kosmos.keyguardClockRepository.setClockSize(ClockSize.LARGE) in isLargeClockVisible_whenLargeClockSize_isTrue()
DKeyguardSmartspaceViewModelTest.kt65 keyguardClockRepository.setClockSize(ClockSize.LARGE) in testWhenWeatherEnabled_notCustomWeatherDataDisplay_isWeatherVisible_shouldBeTrue()
79 keyguardClockRepository.setClockSize(ClockSize.LARGE) in testWhenWeatherEnabled_hasCustomWeatherDataDisplay_isWeatherVisible_shouldBeFalse()
94 keyguardClockRepository.setClockSize(ClockSize.LARGE) in testWhenWeatherEnabled_notCustomWeatherDataDisplay_notIsWeatherVisible_shouldBeFalse()
/frameworks/base/packages/SystemUI/src/com/android/systemui/biometrics/ui/viewmodel/
DPromptSize.kt26 LARGE,
42 get() = this != null && this == PromptSize.LARGE
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/camera/
DCameraPairwiseTest.java61 public enum PictureSize { SMALL, MEDIUM, LARGE }; enumConstant
141 PictureSize.LARGE, Geotagging.ON); in testCameraPairwiseScenario02()
171 SceneMode.AUTO, PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario05()
211 PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario09()
231 PictureSize.LARGE, Geotagging.ON); in testCameraPairwiseScenario11()
241 PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario12()
301 PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario18()
311 PictureSize.LARGE, Geotagging.OFF); in testCameraPairwiseScenario19()
471 case LARGE: in genericPairwiseTestCase()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/binder/
DKeyguardClockViewBinderTest.kt24 import com.android.keyguard.KeyguardClockSwitch.LARGE
57 private val clockSize = MutableStateFlow(ClockSize.LARGE)
86 KeyguardClockViewBinder.updateBurnInLayer(rootView, clockViewModel, ClockSize.LARGE) in addClockViewsToBurnInLayer_LargeWeatherClock()
93 KeyguardClockViewBinder.updateBurnInLayer(rootView, clockViewModel, ClockSize.LARGE) in addClockViewsToBurnInLayer_LargeNonWeatherClock()
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/ui/viewmodel/
DLockscreenContentViewModelTest.kt101 fakeKeyguardClockRepository.setClockSize(ClockSize.LARGE) in <lambda>()
102 assertThat(clockSize).isEqualTo(ClockSize.LARGE) in <lambda>()
123 fakeKeyguardClockRepository.setClockSize(ClockSize.LARGE) in <lambda>()
146 fakeKeyguardClockRepository.setClockSize(ClockSize.LARGE) in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/keyguard/
DKeyguardClockSwitchTest.java22 import static com.android.keyguard.KeyguardClockSwitch.LARGE;
191 mKeyguardClockSwitch.switchToClock(LARGE, /* animate */ true); in switchingToBigClockWithAnimation_makesSmallClockDisappear()
205 mKeyguardClockSwitch.switchToClock(LARGE, /* animate */ false); in switchingToBigClockNoAnimation_makesSmallClockDisappear()
268 assertThat(mKeyguardClockSwitch.switchToClock(LARGE, /* animate */ true)).isTrue(); in switchingToBigClock_returnsTrueOnlyWhenItWasNotVisibleBefore()
269 assertThat(mKeyguardClockSwitch.switchToClock(LARGE, /* animate */ true)).isFalse(); in switchingToBigClock_returnsTrueOnlyWhenItWasNotVisibleBefore()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/domain/interactor/
DKeyguardClockInteractor.kt89 shadeMode == ShadeMode.Single -> ClockSize.LARGE in <lambda>()
91 else -> ClockSize.LARGE in <lambda>()
97 initialValue = ClockSize.LARGE in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/keyguard/
DKeyguardClockSwitch.java54 @IntDef({LARGE, SMALL})
58 public static final int LARGE = 0; field in KeyguardClockSwitch
264 updateClockViews(mDisplayedClockSize == LARGE, animate); in updateStatusArea()
452 updateClockViews(clockSize == LARGE, animate); in switchToClock()
474 post(() -> updateClockViews(mDisplayedClockSize == LARGE, mAnimateOnLayout)); in onLayout()
478 post(() -> updateClockViews(mDisplayedClockSize == LARGE, mAnimateOnLayout)); in onLayout()
DKeyguardClockSwitchController.java22 import static com.android.keyguard.KeyguardClockSwitch.LARGE;
298 displayClock(LARGE, /* animate= */ false); in onViewAttached()
485 if (!mCanShowDoubleLineClock && clockSize == KeyguardClockSwitch.LARGE) { in displayClock()
494 if (clock != null && animate && appeared && clockSize == LARGE) { in displayClock()
596 return mKeyguardClockInteractor.getClockSize().getValue().getLegacyValue() == LARGE; in isClockTopAligned()
702 pw.println("currentClockSizeLarge: " + (mCurrentClockSize == LARGE)); in dump()
727 return ((mCurrentClockSize == LARGE) ? clock.getLargeClock() : clock.getSmallClock()) in clockHasCustomWeatherDataDisplay()
/frameworks/base/core/java/com/android/internal/accessibility/common/
DShortcutConstants.java149 FloatingMenuSize.LARGE,
154 int LARGE = 1; field
/frameworks/base/packages/SystemUI/multivalentTests/src/com/android/systemui/keyguard/domain/interactor/
DKeyguardClockInteractorTest.kt71 kosmos.keyguardClockRepository.setClockSize(ClockSize.LARGE) in clockSize_sceneContainerFlagOff_basedOnRepository()
72 assertThat(value).isEqualTo(ClockSize.LARGE) in clockSize_sceneContainerFlagOff_basedOnRepository()
141 assertThat(value).isEqualTo(ClockSize.LARGE) in clockSize_SceneContainerFlagOn_shadeModeSplit_noMedia_LARGE()
153 assertThat(value).isEqualTo(ClockSize.LARGE) in clockSize_SceneContainerFlagOn_shadeModeSplit_isDozing_LARGE()
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
DFontSize.java27 LARGE(0x1), enumConstant
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/shade/
DNotificationPanelViewControllerTest.java19 import static com.android.keyguard.KeyguardClockSwitch.LARGE;
786 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testSwitchesToCorrectClockInSinglePaneShade()
803 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testSwitchesToCorrectClockInSplitShade()
809 .displayClock(LARGE, /* animate */ true); in testSwitchesToCorrectClockInSplitShade()
822 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testHasNotifications_switchesToLargeClockWhenEnteringSplitShade()
833 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testNoNotifications_switchesToLargeClockWhenEnteringSplitShade()
859 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ true); in testNoNotifications_switchesToLargeClockWhenExitingSplitShade()
874 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate= */ true); in clockSize_mediaShowing_inSplitShade_onAod_isLarge()
945 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ false); in testSwitchesToBigClockInSplitShadeOnAodAnimateDisabled()
983 verify(mKeyguardStatusViewController).displayClock(LARGE, /* animate */ false); in switchesToBigClockInSplitShadeOn_landFlagOff_DontForceSmallClock()
[all …]
DNotificationPanelViewControllerWithCoroutinesTest.kt29 import com.android.keyguard.KeyguardClockSwitch.LARGE in <lambda>()
122 verify(mKeyguardStatusViewController, times(3)).displayClock(LARGE, /* animate */ true) in <lambda>()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/keyguard/ui/view/layout/sections/
DClockSectionTest.kt131 keyguardClockInteractor.setClockSize(ClockSize.LARGE) in <lambda>()
151 keyguardClockInteractor.setClockSize(ClockSize.LARGE) in <lambda>()
176 keyguardClockInteractor.setClockSize(ClockSize.LARGE) in <lambda>()
201 keyguardClockInteractor.setClockSize(ClockSize.LARGE) in <lambda>()
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/
DWindowMagnificationSettings.java124 MagnificationSize.LARGE,
132 int LARGE = 3; field
262 setMagnifierSize(MagnificationSize.LARGE);
709 } else if (mLastSelectedButtonIndex == MagnificationSize.LARGE) { in updateSelectedButton()
720 } else if (index == MagnificationSize.LARGE) { in updateSelectedButton()
/frameworks/base/packages/SystemUI/src/com/android/systemui/keyguard/ui/viewmodel/
DKeyguardClockViewModel.kt71 initialValue = ClockSize.LARGE, in <lambda>()
76 .map { it == ClockSize.LARGE } in <lambda>()
DLockscreenContentViewModel.kt97 return if (clockSize.value == ClockSize.LARGE) { in <lambda>()
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/keyguard/data/repository/
DFakeKeyguardClockRepository.kt34 private val _clockSize = MutableStateFlow(ClockSize.LARGE)
/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/
DMenuViewAppearance.java75 MenuSizeType.LARGE
80 int LARGE = 1; field
/frameworks/base/tools/aapt2/integration-tests/DumpTest/
Dcomponents_expected_proto.txt45 screens: LARGE

12