Home
last modified time | relevance | path

Searched refs:SmartBatteryTip (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/tips/
DSmartBatteryTip.java29 public class SmartBatteryTip extends BatteryTip { class
31 public SmartBatteryTip(@StateType int state) { in SmartBatteryTip() method in SmartBatteryTip
35 private SmartBatteryTip(Parcel in) { in SmartBatteryTip() method in SmartBatteryTip
67 return new SmartBatteryTip(in);
71 return new SmartBatteryTip[size];
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/fuelgauge/batterytip/tips/
DSmartBatteryTip.java29 public class SmartBatteryTip extends BatteryTip { class
31 public SmartBatteryTip(@StateType int state) { in SmartBatteryTip() method in SmartBatteryTip
35 private SmartBatteryTip(Parcel in) { in SmartBatteryTip() method in SmartBatteryTip
67 return new SmartBatteryTip(in);
71 return new SmartBatteryTip[size];
/packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/detectors/
DSmartBatteryDetector.java24 import com.android.settings.fuelgauge.batterytip.tips.SmartBatteryTip;
46 return new SmartBatteryTip(state); in detect()
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/fuelgauge/batterytip/detectors/
DSmartBatteryDetector.java24 import com.android.car.developeroptions.fuelgauge.batterytip.tips.SmartBatteryTip;
46 return new SmartBatteryTip(state); in detect()
/packages/apps/Settings/tests/robotests/src/com/android/settings/fuelgauge/batterytip/tips/
DSmartBatteryTipTest.java39 private SmartBatteryTip mSmartBatteryTip;
46 mSmartBatteryTip = new SmartBatteryTip(BatteryTip.StateType.NEW); in setUp()