Home
last modified time | relevance | path

Searched refs:notes (Results 1 – 25 of 53) sorted by relevance

123

/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/data/entries/
DSleepSessionItemViewBinder.kt54 val notes = view.findViewById<TextView>(R.id.item_data_entry_notes) in bind() constant
63 notes.isVisible = !data.notes.isNullOrBlank() in bind()
64 notes.text = data.notes in bind()
DExerciseSessionItemViewBinder.kt55 val notes = view.findViewById<TextView>(R.id.item_data_entry_notes) in bind() constant
64 notes.isVisible = !data.notes.isNullOrBlank() in bind()
65 notes.text = data.notes in bind()
DFormattedDataEntry.kt44 val notes: String? constant in com.android.healthconnect.controller.data.entries.FormattedEntry.SleepSessionEntry
54 val notes: String?, constant in com.android.healthconnect.controller.data.entries.FormattedEntry.ExerciseSessionEntry
109 val notes: String? constant in com.android.healthconnect.controller.data.entries.FormattedEntry.PlannedExerciseSessionEntry
124 data class PlannedExerciseSessionNotesEntry(val notes: String) : FormattedEntry(uuid = "") constant in com.android.healthconnect.controller.data.entries.FormattedEntry.PlannedExerciseSessionNotesEntry
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/
DSleepSessionItemViewBinder.kt56 val notes = view.findViewById<TextView>(R.id.item_data_entry_notes) in bind() constant
65 notes.isVisible = !data.notes.isNullOrBlank() in bind()
66 notes.text = data.notes in bind()
DExerciseSessionItemViewBinder.kt57 val notes = view.findViewById<TextView>(R.id.item_data_entry_notes) in bind() constant
69 notes.isVisible = !data.notes.isNullOrBlank() in bind()
70 notes.text = data.notes in bind()
/packages/providers/ContactsProvider/tests/assets/test1/
Dexpected_groups.txt7 7 notes=System Group: My Contacts
24 24 notes=Eclair Contacts
41 41 notes=Starred in Android
58 58 notes=null
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/formatters/
DPlannedExerciseSessionRecordFormatter.kt55 notes = getNotes(record), in <lambda>()
67 return record.notes?.toString() in <lambda>()
75 if (!record.notes.isNullOrBlank()) { in <lambda>()
78 add(FormattedSectionContent(record.notes.toString())) in <lambda>()
DSleepSessionFormatter.kt62 notes = getNotes(record)) in <lambda>()
84 return record.notes?.toString() in <lambda>()
/packages/modules/HealthFitness/framework/java/android/health/connect/datatypes/
DMindfulnessSessionRecord.java121 @Nullable CharSequence notes, in MindfulnessSessionRecord() argument
139 mNotes = notes; in MindfulnessSessionRecord()
269 public Builder setNotes(@Nullable CharSequence notes) { in setNotes() argument
270 mNotes = notes; in setNotes()
DSleepSessionRecord.java87 @Nullable CharSequence notes, in SleepSessionRecord() argument
103 mNotes = notes; in SleepSessionRecord()
356 public Builder setNotes(@Nullable CharSequence notes) { in setNotes() argument
357 mNotes = notes; in setNotes()
DExerciseSessionRecord.java92 @Nullable CharSequence notes, in ExerciseSessionRecord() argument
109 mNotes = notes; in ExerciseSessionRecord()
302 public Builder setNotes(@Nullable CharSequence notes) { in setNotes() argument
303 mNotes = notes; in setNotes()
DPlannedExerciseSessionRecord.java83 @Nullable CharSequence notes, in PlannedExerciseSessionRecord() argument
98 mNotes = notes; in PlannedExerciseSessionRecord()
322 public Builder setNotes(@Nullable CharSequence notes) { in setNotes() argument
323 mNotes = notes; in setNotes()
/packages/modules/HealthFitness/framework/java/android/health/connect/internal/datatypes/
DMindfulnessSessionRecordInternal.java110 public MindfulnessSessionRecordInternal setNotes(String notes) { in setNotes() argument
111 this.mNotes = notes; in setNotes()
DSleepSessionRecordInternal.java52 public SleepSessionRecordInternal setNotes(String notes) { in setNotes() argument
53 mNotes = notes; in setNotes()
DPlannedExerciseSessionRecordInternal.java59 public PlannedExerciseSessionRecordInternal setNotes(String notes) { in setNotes() argument
60 this.mNotes = notes; in setNotes()
DExerciseSessionRecordInternal.java68 public ExerciseSessionRecordInternal setNotes(String notes) { in setNotes() argument
69 this.mNotes = notes; in setNotes()
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DVCardResourceEntry.java107 List<NoteData> notes = mVCard.getNotes(); in getNotes() local
108 if (notes == null || notes.size() == 0) { in getNotes()
112 for (NoteData note : notes) { in getNotes()
/packages/providers/ContactsProvider/tests/assets/upgradeTest/
Dcontacts2_1108.sql38 …L DEFAULT 1,dirty INTEGER NOT NULL DEFAULT 0,title TEXT,title_res INTEGER,notes TEXT,system_id TEX… field
148 … END) AS account_type_and_data_set,sourceid,version,dirty,title,title_res,notes,system_id,deleted,…
155 …ta8,' '))||' '||ifnull(name.data9,' ')) AS phonetic_name , note.data1 AS notes, accounts.account_…
157 …ta8,' '))||' '||ifnull(name.data9,' ')) AS phonetic_name , note.data1 AS notes, accounts.account_…
158 …ta8,' '))||' '||ifnull(name.data9,' ')) AS phonetic_name , note.data1 AS notes, accounts.account_…
160 …AS _id, accounts.account_name, accounts.account_type, title AS name, notes AS notes , system_id AS…
161 …count_name, accounts.account_type, data1 AS group_id, title AS name, notes AS notes, system_id AS …
/packages/providers/ContactsProvider/tests/assets/testUnsynced/
Dexpected_groups.txt7 7 notes=null
Dlegacy_contacts.sql30 …nc_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT NOT NULL,notes TEXT,should_sync I… field
33 …INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT COLLATE LOCALIZED,notes TEXT COLLATE LOCAL… field
/packages/providers/ContactsProvider/tests/assets/testSynced/
Dexpected_groups.txt7 7 notes=System Group: My Contacts
Dlegacy_contacts.sql40 …nc_dirty INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT NOT NULL,notes TEXT,should_sync I… field
43 …INTEGER NOT NULL DEFAULT 0,_sync_mark INTEGER,name TEXT COLLATE LOCALIZED,notes TEXT COLLATE LOCAL… field
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/entrydetails/
DDataEntryDetailsFragmentTest.kt169 notes = "notes"))))) in dataEntriesDetailsInit_withData_showsItem()
325 notes = "Morning quick run by the park")) in dataEntriesDetailsInit_withPlannedExerciseSession_showsItem_showsDetails()
491 notes = "notes") in getFormattedSleepSession()
502 notes = "notes", in getFormattedExerciseSession()
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/dataentries/
DDataEntriesFragmentTest.kt208 notes = "Daily morning run.",
216 notes = "A weekly swimming training plan.",
/packages/modules/HealthFitness/tests/cts/src/android/healthconnect/cts/datatypes/
DExerciseSessionRecordTest.java147 String notes = "rain"; in testExerciseSession_buildSessionWithAllFields_buildCorrectObject() local
172 .setNotes(notes) in testExerciseSession_buildSessionWithAllFields_buildCorrectObject()
184 assertThat(record.getNotes().toString()).isEqualTo(notes); in testExerciseSession_buildSessionWithAllFields_buildCorrectObject()
319 CharSequence notes = "rain"; in testExerciseSessionBuilds_zoneOffsets_offsetsAreDefault() local
330 .setNotes(notes) in testExerciseSessionBuilds_zoneOffsets_offsetsAreDefault()

123