Home
last modified time | relevance | path

Searched refs:formatA11yUnit (Results 1 – 10 of 10) sorted by relevance

/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/
DLoadDataAggregationsUseCase.kt135 addAggregationA11yPrefix(stepsFormatter.formatA11yUnit(aggregationResult)), in <lambda>()
143 totalCaloriesBurnedFormatter.formatA11yUnit(aggregationResult)), in <lambda>()
150 distanceFormatter.formatA11yUnit(aggregationResult)), in <lambda>()
156 addAggregationA11yPrefix(sleepFormatter.formatA11yUnit(aggregationResult)), in <lambda>()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/data/entries/api/
DLoadDataAggregationsUseCase.kt162 aggregationA11y = stepsFormatter.formatA11yUnit(aggregationResult), in <lambda>()
168 sleepSessionFormatter.formatA11yUnit(aggregationResult), in <lambda>()
179 totalCaloriesBurnedFormatter.formatA11yUnit(aggregationResult), in <lambda>()
184 aggregationA11y = distanceFormatter.formatA11yUnit(aggregationResult), in <lambda>()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/formatters/
DStepsFormatter.kt45 return formatA11yUnit(record.count) in formatA11yValue()
52 override fun formatA11yUnit(unit: Long): String { in formatA11yUnit() method in com.android.healthconnect.controller.dataentries.formatters.StepsFormatter
DSkinTemperatureFormatter.kt156 formatA11yUnit(record.deltas.first().delta) in formatA11yValue()
166 override fun formatA11yUnit(unit: TemperatureDelta): String { in formatA11yUnit() method in com.android.healthconnect.controller.dataentries.formatters.SkinTemperatureFormatter
DDistanceFormatter.kt50 override fun formatA11yUnit(unit: Length): String { in formatA11yUnit() method in com.android.healthconnect.controller.dataentries.formatters.DistanceFormatter
DTotalCaloriesBurnedFormatter.kt53 override fun formatA11yUnit(unit: Energy): String { in formatA11yUnit() method in com.android.healthconnect.controller.dataentries.formatters.TotalCaloriesBurnedFormatter
DPlannedExerciseStepFormatter.kt131 StepsFormatter(context).formatA11yUnit(completionGoal.steps.toLong()) in <lambda>()
DSleepSessionFormatter.kt75 override fun formatA11yUnit(unit: Long): String { in <lambda>() method in com.android.healthconnect.controller.dataentries.formatters.SleepSessionFormatter
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/formatters/shared/
DUnitFormatter.kt25 fun formatA11yUnit(unit: T): String method
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/dataentries/formatters/
DSleepSessionFormatterTest.kt183 assertThat(formatter.formatA11yUnit(totalSleepTime)).isEqualTo("10 hours 54 minutes") in formatA11yUnit_showsAmountOfSleep()