Home
last modified time | relevance | path

Searched refs:FormattedSectionContent (Results 1 – 7 of 7) sorted by relevance

/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/entrydetails/
DFormattedSectionContentViewBinder.kt21 import com.android.healthconnect.controller.data.entries.FormattedEntry.FormattedSectionContent
28 class FormattedSectionContentViewBinder : ViewBinder<FormattedSectionContent, View> {
40 override fun bind(view: View, data: FormattedSectionContent, index: Int) { in bind()
DDataEntryDetailsFragment.kt30 import com.android.healthconnect.controller.data.entries.FormattedEntry.FormattedSectionContent in <lambda>()
186 FormattedSectionContent::class.java, formattedSectionContentViewBinder) in <lambda>()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/formatters/
DPlannedExerciseSessionRecordFormatter.kt22 import com.android.healthconnect.controller.data.entries.FormattedEntry.FormattedSectionContent in <lambda>()
78 add(FormattedSectionContent(record.notes.toString())) in <lambda>()
DPlannedExerciseStepFormatter.kt23 import com.android.healthconnect.controller.data.entries.FormattedEntry.FormattedSectionContent in <lambda>()
53 add(FormattedSectionContent(title = step.description.toString(), bulleted = true)) in <lambda>()
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/dataentries/formatters/
DPlannedExerciseSessionRecordFormatterTest.kt26 import com.android.healthconnect.controller.data.entries.FormattedEntry.FormattedSectionContent
156 FormattedSectionContent("Morning quick run by the park"), in <lambda>()
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/entrydetails/
DDataEntryDetailsFragmentTest.kt54 import com.android.healthconnect.controller.data.entries.FormattedEntry.FormattedSectionContent
348 add(FormattedSectionContent("Morning quick run by the park")) in dataEntriesDetailsInit_withPlannedExerciseSession_showsItem_showsDetails()
362 add(FormattedSectionContent(title = "This is a test exercise step", bulleted = true)) in dataEntriesDetailsInit_withPlannedExerciseSession_showsItem_showsDetails()
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/data/entries/
DFormattedDataEntry.kt71 data class FormattedSectionContent(val title: String, val bulleted: Boolean = false) : dataClass