Home
last modified time | relevance | path

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

/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/datasources/api/
DLoadMostRecentAggregationsUseCase.kt20 import com.android.healthconnect.controller.datasources.AggregationCardInfo in <lambda>()
51 ): UseCaseResults<List<AggregationCardInfo>> = in <lambda>()
54 val resultsList = mutableListOf<AggregationCardInfo>() in <lambda>()
106 ): AggregationCardInfo? { in <lambda>()
126 AggregationCardInfo(healthPermissionType, useCaseResult.data, lastDateInstant) in <lambda>()
136 ): AggregationCardInfo? { in <lambda>()
162 ): AggregationCardInfo { in <lambda>()
174 AggregationCardInfo( in <lambda>()
187 ): UseCaseResults<List<AggregationCardInfo>>
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/datasources/api/
DLoadMostRecentAggregationsUseCaseTest.kt7 import com.android.healthconnect.controller.datasources.AggregationCardInfo
102 AggregationCardInfo( in <lambda>()
106 AggregationCardInfo( in <lambda>()
110 AggregationCardInfo( in <lambda>()
139 AggregationCardInfo( in loadMostRecentAggregations_forActivity_whenNoStepsData_returnsInOrder_DistanceCalories()
143 AggregationCardInfo( in loadMostRecentAggregations_forActivity_whenNoStepsData_returnsInOrder_DistanceCalories()
172 AggregationCardInfo( in loadMostRecentAggregations_forActivity_whenNoDistanceData_returnsInOrder_StepsCalories()
176 AggregationCardInfo( in loadMostRecentAggregations_forActivity_whenNoDistanceData_returnsInOrder_StepsCalories()
205 AggregationCardInfo( in loadMostRecentAggregations_forActivity_whenNoCaloriesData_returnsInOrder_StepsDistance()
209 AggregationCardInfo( in loadMostRecentAggregations_forActivity_whenNoCaloriesData_returnsInOrder_StepsDistance()
[all …]
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/shared/preference/
DCardContainerPreference.kt25 import com.android.healthconnect.controller.datasources.AggregationCardInfo
51 private val mAggregationCardInfo: MutableList<AggregationCardInfo> = mutableListOf()
57 fun setAggregationCardInfo(aggregationCardInfoList: List<AggregationCardInfo>) { in setAggregationCardInfo()
169 private fun addSingleLargeCard(cardInfo: AggregationCardInfo): AggregationDataCard { in addSingleLargeCard()
188 firstCardInfo: AggregationCardInfo, in addTwoSmallCards()
189 secondCardInfo: AggregationCardInfo in addTwoSmallCards()
237 cardInfo: AggregationCardInfo, in constructSmallCard()
265 firstCardInfo: AggregationCardInfo, in addTwoLargeCards()
266 secondCardInfo: AggregationCardInfo in addTwoLargeCards()
314 cardInfo: AggregationCardInfo, in constructLargeCard()
DAggregationDataCard.kt25 import com.android.healthconnect.controller.datasources.AggregationCardInfo
42 cardInfo: AggregationCardInfo,
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/datasources/
DDataSourcesFragmentTest.kt35 import com.android.healthconnect.controller.datasources.AggregationCardInfo in <lambda>()
123 AggregationCardInfo( in <lambda>()
137 AggregationCardInfo( in <lambda>()
214 AggregationCardInfo( in <lambda>()
228 AggregationCardInfo( in <lambda>()
278 AggregationCardInfo( in <lambda>()
292 AggregationCardInfo( in <lambda>()
317 AggregationCardInfo( in <lambda>()
332 AggregationCardInfo( in <lambda>()
384 AggregationCardInfo( in <lambda>()
[all …]
DDataSourcesViewModelTest.kt5 import com.android.healthconnect.controller.datasources.AggregationCardInfo
114 AggregationCardInfo( in <lambda>()
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/utils/di/
DFakeComponents.kt32 import com.android.healthconnect.controller.datasources.AggregationCardInfo
179 private var mostRecentAggregations = listOf<AggregationCardInfo>()
183 ): UseCaseResults<List<AggregationCardInfo>> { in invoke()
187 fun updateMostRecentAggregations(aggregations: List<AggregationCardInfo>) { in updateMostRecentAggregations()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/datasources/
DAggregationCardInfo.kt21 data class AggregationCardInfo( dataClass
DDataSourcesFragment.kt298 private fun updateDataTotalsSection(cardInfos: List<AggregationCardInfo>) { in <lambda>()
320 private fun updateAggregations(cardInfos: List<AggregationCardInfo>, isLoading: Boolean) { in <lambda>()
DDataSourcesViewModel.kt258 val dataTotals: List<AggregationCardInfo> in <lambda>()