Home
last modified time | relevance | path

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

/packages/services/Car/car-lib/src/android/car/hardware/property/
DAreaIdConfig.java92 List<RawPropertyValue> supportedEnumPropertyValues = new ArrayList<>(); in AreaIdConfig() local
93 in.readParcelableList(supportedEnumPropertyValues, in AreaIdConfig()
96 for (int i = 0; i < supportedEnumPropertyValues.size(); i++) { in AreaIdConfig()
97 mSupportedEnumValues.add((T) supportedEnumPropertyValues.get(i).getTypedValue()); in AreaIdConfig()
311 List<RawPropertyValue> supportedEnumPropertyValues = new ArrayList<>();
313 supportedEnumPropertyValues.add(new RawPropertyValue(mSupportedEnumValues.get(i)));
315 dest.writeParcelableList(supportedEnumPropertyValues, /* parcelableFlags= */ 0);