Searched refs:isEqualNullableCharSequences (Results 1 – 7 of 7) sorted by relevance
/packages/modules/HealthFitness/framework/java/android/health/connect/datatypes/ |
D | MindfulnessSessionRecord.java | 19 import static android.health.connect.datatypes.RecordUtils.isEqualNullableCharSequences; 167 && isEqualNullableCharSequences(getTitle(), that.getTitle()) in equals() 168 && isEqualNullableCharSequences(getNotes(), that.getNotes()); in equals()
|
D | SleepSessionRecord.java | 19 import static android.health.connect.datatypes.RecordUtils.isEqualNullableCharSequences; 132 return isEqualNullableCharSequences(getNotes(), that.getNotes()) in equals() 133 && isEqualNullableCharSequences(getTitle(), that.getTitle()) in equals()
|
D | RecordUtils.java | 33 public static boolean isEqualNullableCharSequences( in isEqualNullableCharSequences() method in RecordUtils
|
D | ExerciseSessionRecord.java | 200 && RecordUtils.isEqualNullableCharSequences(getNotes(), that.getNotes()) in equals() 201 && RecordUtils.isEqualNullableCharSequences(getTitle(), that.getTitle()) in equals()
|
D | PlannedExerciseSessionRecord.java | 167 return RecordUtils.isEqualNullableCharSequences(this.getNotes(), that.getNotes()) in equals() 168 && RecordUtils.isEqualNullableCharSequences(this.getTitle(), that.getTitle()) in equals()
|
D | PlannedExerciseBlock.java | 74 return RecordUtils.isEqualNullableCharSequences(getDescription(), that.getDescription()) in equals()
|
D | PlannedExerciseStep.java | 99 return RecordUtils.isEqualNullableCharSequences(getDescription(), that.getDescription()) in equals()
|