Home
last modified time | relevance | path

Searched refs:mNotes (Results 1 – 9 of 9) sorted by relevance

/packages/modules/HealthFitness/framework/java/android/health/connect/internal/datatypes/
DMindfulnessSessionRecordInternal.java36 @Nullable private String mNotes; field in MindfulnessSessionRecordInternal
42 mNotes = parcel.readString(); in populateIntervalRecordFrom()
49 parcel.writeString(mNotes); in populateIntervalRecordTo()
105 return mNotes; in getNotes()
111 this.mNotes = notes; in setNotes()
DSleepSessionRecordInternal.java40 private String mNotes; field in SleepSessionRecordInternal
47 return mNotes; in getNotes()
53 mNotes = notes; in setNotes()
95 parcel.writeString(mNotes); in populateIntervalRecordTo()
102 mNotes = parcel.readString(); in populateIntervalRecordFrom()
DPlannedExerciseSessionRecordInternal.java40 @Nullable private String mNotes; field in PlannedExerciseSessionRecordInternal
54 return mNotes; in getNotes()
60 this.mNotes = notes; in setNotes()
131 mNotes = parcel.readString(); in populateIntervalRecordFrom()
142 parcel.writeString(mNotes); in populateIntervalRecordTo()
DExerciseSessionRecordInternal.java41 private String mNotes; field in ExerciseSessionRecordInternal
63 return mNotes; in getNotes()
69 this.mNotes = notes; in setNotes()
218 parcel.writeString(mNotes); in populateIntervalRecordTo()
232 mNotes = parcel.readString(); in populateIntervalRecordFrom()
/packages/modules/HealthFitness/framework/java/android/health/connect/datatypes/
DMindfulnessSessionRecord.java98 @Nullable private final CharSequence mNotes; field in MindfulnessSessionRecord
139 mNotes = notes; in MindfulnessSessionRecord()
157 return mNotes; in getNotes()
198 @Nullable private CharSequence mNotes; field in MindfulnessSessionRecord.Builder
270 mNotes = notes; in setNotes()
288 mNotes, in buildWithoutValidation()
303 mNotes, in build()
DSleepSessionRecord.java63 private final CharSequence mNotes; field in SleepSessionRecord
103 mNotes = notes; in SleepSessionRecord()
110 return mNotes; in getNotes()
296 private CharSequence mNotes; field in SleepSessionRecord.Builder
357 mNotes = notes; in setNotes()
399 mNotes, in buildWithoutValidation()
414 mNotes, in build()
DExerciseSessionRecord.java62 private final CharSequence mNotes; field in ExerciseSessionRecord
109 mNotes = notes; in ExerciseSessionRecord()
144 return mNotes; in getNotes()
229 private CharSequence mNotes; field in ExerciseSessionRecord.Builder
303 mNotes = notes; in setNotes()
391 mNotes, in buildWithoutValidation()
411 mNotes, in build()
DPlannedExerciseSessionRecord.java52 @Nullable private final CharSequence mNotes; field in PlannedExerciseSessionRecord
98 mNotes = notes; in PlannedExerciseSessionRecord()
113 return mNotes; in getNotes()
196 @Nullable private CharSequence mNotes; field in PlannedExerciseSessionRecord.Builder
323 mNotes = notes; in setNotes()
395 mNotes, in buildWithoutValidation()
416 mNotes, in build()
/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/appsearchtypes/
DPerson.java360 private final List<String> mNotes = new ArrayList<>(); field in Person.Builder
453 mNotes.add(Objects.requireNonNull(note)); in addNote()
488 setPropertyString(PERSON_PROPERTY_NOTES, mNotes.toArray(new String[0])); in build()