Searched refs:isPowerSaving (Results 1 – 5 of 5) sorted by relevance
23 val isPowerSaving: Boolean constant28 override val isPowerSaving: Boolean, constant in com.android.systemui.qs.tiles.impl.battery.domain.model.BatterySaverTileModel.Standard37 override val isPowerSaving: Boolean, constant in com.android.systemui.qs.tiles.impl.battery.domain.model.BatterySaverTileModel.Extreme
70 Truth.assertThat(data!!.isPowerSaving).isFalse() in tileData_matchesBatteryControllerPowerSaving()74 Truth.assertThat(data!!.isPowerSaving).isTrue() in tileData_matchesBatteryControllerPowerSaving()78 Truth.assertThat(data!!.isPowerSaving).isFalse() in tileData_matchesBatteryControllerPowerSaving()
42 if (data.isPowerSaving) R.drawable.qs_battery_saver_icon_on in map()52 } else if (data.isPowerSaving) { in map()
42 batteryController.setPowerSaveMode(!data.isPowerSaving, action.expandable) in handleInput()
73 fun isPowerSaving(): Boolean = powerSaving?.get() ?: false in isPowerSaving() method