/packages/modules/HealthFitness/framework/java/android/health/connect/datatypes/ |
D | MindfulnessSessionRecord.java | 156 public CharSequence getNotes() { in getNotes() method in MindfulnessSessionRecord 168 && isEqualNullableCharSequences(getNotes(), that.getNotes()); in equals() 173 return Objects.hash(super.hashCode(), getMindfulnessSessionType(), getTitle(), getNotes()); in hashCode() 332 if (getNotes() != null) { in toRecordInternal() 333 recordInternal.setNotes(getNotes().toString()); in toRecordInternal()
|
D | SleepSessionRecord.java | 109 public CharSequence getNotes() { in getNotes() method in SleepSessionRecord 132 return isEqualNullableCharSequences(getNotes(), that.getNotes()) in equals() 139 return Objects.hash(super.hashCode(), getNotes(), getTitle(), getStages()); in hashCode() 443 if (getNotes() != null) { in toRecordInternal() 444 recordInternal.setNotes(getNotes().toString()); in toRecordInternal()
|
D | ExerciseSessionRecord.java | 143 public CharSequence getNotes() { in getNotes() method in ExerciseSessionRecord 200 && RecordUtils.isEqualNullableCharSequences(getNotes(), that.getNotes()) in equals() 213 getNotes(), in hashCode() 444 if (getNotes() != null) { in toRecordInternal() 445 recordInternal.setNotes(getNotes().toString()); in toRecordInternal()
|
D | PlannedExerciseSessionRecord.java | 112 public CharSequence getNotes() { in getNotes() method in PlannedExerciseSessionRecord 167 return RecordUtils.isEqualNullableCharSequences(this.getNotes(), that.getNotes()) in equals() 180 getNotes(), in hashCode() 444 if (getNotes() != null) { in toRecordInternal() 445 recordInternal.setNotes(getNotes().toString()); in toRecordInternal()
|
/packages/modules/HealthFitness/tests/unittests/src/android/healthconnect/internal/datatypes/ |
D | SleepSessionInternalTest.java | 84 internal.getNotes(), external.getNotes()); in assertFieldsAreEqual() 99 internal.getNotes(), internal2.getNotes()); in assertFieldsAreEqual()
|
D | ExerciseSessionInternalTest.java | 105 internal.getNotes(), external.getNotes()); in assertFieldsAreEqual() 162 internal.getNotes(), internal2.getNotes()); in assertFieldsAreEqual()
|
D | MindfulSessionRecordInternalTest.java | 83 assertThat(externalRecord.getNotes()).isEqualTo("notes"); in toExternalRecord_allFieldsSet() 116 assertThat(externalRecord.getNotes()).isNull(); in toExternalRecord_optionalFieldsNotSet() 169 assertThat(decodedRecord.getNotes()).isEqualTo("notes"); in writeToParcel_populateUsing_allFieldsSet() 208 assertThat(decodedRecord.getNotes()).isNull(); in writeToParcel_populateUsing_optionalFieldsNotSet() 264 assertThat(internalRecord.getNotes()).isEqualTo("notes"); in mindfulnessSessionRecord_toInternalRecord_allFieldsSet() 301 assertThat(internalRecord.getNotes()).isNull(); in mindfulnessSessionRecord_toInternalRecord_optionalFieldsNotSet()
|
D | PlannedExerciseSessionInternalTest.java | 80 assertThat(first.getNotes()).isEqualTo(second.getNotes()); in assertFieldsAreEqual()
|
/packages/modules/HealthFitness/framework/java/android/health/connect/internal/datatypes/ |
D | MindfulnessSessionRecordInternal.java | 70 if (getNotes() != null) { in toExternalRecord() 71 builder.setNotes(getNotes()); in toExternalRecord() 104 public String getNotes() { in getNotes() method in MindfulnessSessionRecordInternal
|
D | SleepSessionRecordInternal.java | 46 public String getNotes() { in getNotes() method in SleepSessionRecordInternal 121 if (getNotes() != null) { in toExternalRecord() 122 builder.setNotes(getNotes()); in toExternalRecord()
|
D | PlannedExerciseSessionRecordInternal.java | 53 public String getNotes() { in getNotes() method in PlannedExerciseSessionRecordInternal 172 if (getNotes() != null) { in toExternalRecord() 173 builder.setNotes(getNotes()); in toExternalRecord()
|
D | ExerciseSessionRecordInternal.java | 62 public String getNotes() { in getNotes() method in ExerciseSessionRecordInternal 189 if (getNotes() != null) { in toExternalRecord() 190 builder.setNotes(getNotes()); in toExternalRecord()
|
/packages/modules/HealthFitness/apk/src/com/android/healthconnect/controller/dataentries/formatters/ |
D | PlannedExerciseSessionRecordFormatter.kt | 55 notes = getNotes(record), in <lambda>() 66 private fun getNotes(record: PlannedExerciseSessionRecord): String? { in <lambda>() method in com.android.healthconnect.controller.dataentries.formatters.PlannedExerciseSessionRecordFormatter
|
D | SleepSessionFormatter.kt | 62 notes = getNotes(record)) in <lambda>() 83 private fun getNotes(record: SleepSessionRecord): String? { in <lambda>() method
|
D | ExerciseSessionFormatter.kt | 126 notes = getNotes(record), in <lambda>() 138 fun getNotes(record: ExerciseSessionRecord): String? { in <lambda>() method
|
/packages/apps/Messaging/src/com/android/messaging/datamodel/media/ |
D | VCardResourceEntry.java | 106 public String getNotes() { in getNotes() method in VCardResourceEntry 107 List<NoteData> notes = mVCard.getNotes(); in getNotes() 271 if (vcard.getNotes() != null) { 272 for (final NoteData note : vcard.getNotes()) {
|
/packages/modules/HealthFitness/tests/cts/src/android/healthconnect/cts/datatypes/ |
D | SleepSessionRecordTest.java | 200 assertThat(CharSequence.compare(record.getNotes(), NOTES)).isEqualTo(0); in testSleepSession_buildSession_buildsCorrectObject() 238 assertThat(CharSequence.compare(readRecord.getNotes(), insertedRecord.getNotes())) in testReadById_insertAndReadByIdOne_recordsAreEqual()
|
D | MindfulnessSessionRecordTest.java | 115 assertThat(record.getNotes()).isEqualTo("notes"); in mindfulnessSessionRecordBuilder_allFieldsSet() 138 assertThat(record.getNotes()).isNull(); in mindfulnessSessionRecordBuilder_optionalFieldsUnset()
|
D | PlannedExerciseSessionRecordTest.java | 1125 assertThat(builtRecord.getNotes()).isEqualTo("Some notes"); in builtRecord_fieldsMatchValuesSpecifiedViaBuilder() 1211 builder.setNotes(record.getNotes()); in plannedExerciseSessionRecordToBuilder() 1425 assertWithMessage("notes").that(actual.getNotes()).isEqualTo(expected.getNotes()); in assertRecordsEqual()
|
D | ExerciseSessionRecordTest.java | 111 assertThat(record.getNotes()).isNull(); in testExerciseSession_buildSession_buildCorrectObject() 184 assertThat(record.getNotes().toString()).isEqualTo(notes); in testExerciseSession_buildSessionWithAllFields_buildCorrectObject()
|
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/ |
D | SleepSessionRecordHelper.java | 113 contentValues.put(NOTES_COLUMN_NAME, sleepSessionRecord.getNotes()); in populateSpecificContentValues()
|
/packages/modules/AppSearch/testing/contactsindexertests/src/com/android/server/appsearch/contactsindexer/appsearchtypes/ |
D | PersonTest.java | 107 assertThat(person.getNotes()).asList().containsExactly(note1, note2); in testBuilder()
|
/packages/modules/HealthFitness/apk/tests/src/com/android/healthconnect/controller/tests/dataentries/formatters/ |
D | ExerciseSessionFormatterTest.kt | 81 formatter.getNotes(getRecord(type = EXERCISE_SESSION_TYPE_BIKING, note = "notes"))) in <lambda>()
|
/packages/modules/AppSearch/service/java/com/android/server/appsearch/contactsindexer/appsearchtypes/ |
D | Person.java | 333 public String[] getNotes() { in getNotes() method in Person
|
/packages/modules/HealthFitness/tests/cts/hostsidetests/healthconnect/libs/HealthConnectTestLib/src/android/healthconnect/cts/lib/ |
D | BundleHelper.java | 611 values.putCharSequence(NOTES, record.getNotes()); in getExerciseSessionRecordValues() 764 values.putCharSequence(NOTES, record.getNotes()); in getSleepRecordValues()
|