Home
last modified time | relevance | path

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

/packages/apps/Messaging/src/com/android/messaging/datamodel/media/
DCustomVCardEntry.java32 private final Map<String, VCardProperty> mAllProperties; field in CustomVCardEntry
36 mAllProperties = new ArrayMap<String, VCardProperty>(); in CustomVCardEntry()
42 mAllProperties.put(property.getName(), property); in addProperty()
46 return mAllProperties.get(name); in getProperty()
/packages/apps/Launcher3/quickstep/src/com/android/quickstep/util/
DMultiValueUpdateListener.java29 private final ArrayList<FloatProp> mAllProperties = new ArrayList<>(); field in MultiValueUpdateListener
36 for (int i = mAllProperties.size() - 1; i >= 0; i--) { in onAnimationUpdate()
37 FloatProp prop = mAllProperties.get(i); in onAnimationUpdate()
65 mAllProperties.add(this); in FloatProp()
/packages/services/Car/service/src/com/android/car/hal/
DVehicleHal.java86 private final HashMap<Integer, VehiclePropConfig> mAllProperties = new HashMap<>(); field in VehicleHal
151 mAllProperties.put(p.prop, p); in init()
188 mAllProperties.clear(); in release()
253 config = mAllProperties.get(property); in subscribeProperty()
285 config = mAllProperties.get(property); in unsubscribeProperty()
307 return mAllProperties.containsKey(propertyId); in isPropertySupported()
311 return mAllProperties.values(); in getAllPropConfigs()
497 for (VehiclePropConfig config : mAllProperties.values()) { in dumpPropertyValueByCommend()
501 VehiclePropConfig config = mAllProperties.get(Integer.parseInt(propId, 16)); in dumpPropertyValueByCommend()
548 configList = new ArrayList<>(mAllProperties.values()); in dumpPropertyConfigs()