Home
last modified time | relevance | path

Searched refs:UnspecifiedGoalInternal (Results 1 – 3 of 3) sorted by relevance

/packages/modules/HealthFitness/tests/unittests/src/android/healthconnect/internal/datatypes/
DExerciseCompletionGoalInternalTest.java32 …t android.health.connect.internal.datatypes.ExerciseCompletionGoalInternal.UnspecifiedGoalInternal;
249 UnspecifiedGoalInternal original = UnspecifiedGoalInternal.INSTANCE; in unspecifiedGoal_writeToParcelThenRestore_objectsAreIdentical()
252 UnspecifiedGoalInternal restored = in unspecifiedGoal_writeToParcelThenRestore_objectsAreIdentical()
253 (UnspecifiedGoalInternal) ExerciseCompletionGoalInternal.readFromParcel(parcel); in unspecifiedGoal_writeToParcelThenRestore_objectsAreIdentical()
255 assertThat(restored).isInstanceOf(UnspecifiedGoalInternal.class); in unspecifiedGoal_writeToParcelThenRestore_objectsAreIdentical()
262 UnspecifiedGoalInternal original = UnspecifiedGoalInternal.INSTANCE; in unspecifiedGoal_convertToExternalAndBack_objectsAreIdentical()
264 assertThat(UnspecifiedGoalInternal.fromExternalObject(original.toExternalObject())) in unspecifiedGoal_convertToExternalAndBack_objectsAreIdentical()
/packages/modules/HealthFitness/framework/java/android/health/connect/internal/datatypes/
DExerciseCompletionGoalInternal.java75 return UnspecifiedGoalInternal.INSTANCE; in fromExternalObject()
106 case UnspecifiedGoalInternal.UNSPECIFIED_GOAL_TYPE_ID: in readFromParcel()
107 return UnspecifiedGoalInternal.INSTANCE; in readFromParcel()
421 public static final class UnspecifiedGoalInternal extends ExerciseCompletionGoalInternal { class in ExerciseCompletionGoalInternal
424 public static final UnspecifiedGoalInternal INSTANCE = new UnspecifiedGoalInternal();
431 UnspecifiedGoalInternal() {} in UnspecifiedGoalInternal() method in ExerciseCompletionGoalInternal.UnspecifiedGoalInternal
/packages/modules/HealthFitness/service/java/com/android/server/healthconnect/storage/datatypehelpers/
DPlannedExerciseSessionRecordHelper.java60 …t android.health.connect.internal.datatypes.ExerciseCompletionGoalInternal.UnspecifiedGoalInternal;
311 case UnspecifiedGoalInternal.UNSPECIFIED_GOAL_TYPE_ID: in extractCompletionGoal()
312 return UnspecifiedGoalInternal.INSTANCE; in extractCompletionGoal()