Searched refs:mEnhancedEstimates (Results 1 – 3 of 3) sorted by relevance
88 private EnhancedEstimates mEnhancedEstimates; field in PowerUI126 mEnhancedEstimates = Dependency.get(EnhancedEstimates.class); in start()332 final boolean hybridEnabled = mEnhancedEstimates.isHybridNotificationEnabled(); in maybeShowBatteryWarningV2()349 mEnhancedEstimates.getSevereWarningThreshold(), in maybeShowBatteryWarningV2()350 mEnhancedEstimates.getLowWarningThreshold(), estimate.isBasedOnUsage(), in maybeShowBatteryWarningV2()351 mEnhancedEstimates.getLowWarningEnabled()); in maybeShowBatteryWarningV2()375 final Estimate estimate = mEnhancedEstimates.getEstimate(); in refreshEstimateIfNeeded()
85 private EnhancedEstimates mEnhancedEstimates; field in PowerUITest99 mEnhancedEstimates = mDependency.injectMockDependency(EnhancedEstimates.class); in setup()531 when(mEnhancedEstimates.isHybridNotificationEnabled()).thenReturn(true); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()532 when(mEnhancedEstimates.getLowWarningThreshold()).thenReturn(PowerUI.THREE_HOURS_IN_MILLIS); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()533 when(mEnhancedEstimates.getSevereWarningThreshold()).thenReturn(ONE_HOUR_MILLIS); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()534 when(mEnhancedEstimates.getEstimate()).thenReturn(estimate); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()548 when(mEnhancedEstimates.getEstimate()).thenReturn(estimate); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()558 when(mEnhancedEstimates.getEstimate()).thenReturn(estimate); in testRefreshEstimateIfNeeded_onlyQueriesEstimateOnBatteryLevelChangeOrNull()
265 @Inject Lazy<EnhancedEstimates> mEnhancedEstimates; field in Dependency447 mProviders.put(EnhancedEstimates.class, mEnhancedEstimates::get); in start()