Home
last modified time | relevance | path

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

/packages/apps/Car/libs/car-ui-lib/car-ui-lib/src/main/java/com/android/car/ui/utils/
DCarUiUtils.java166 @NonNull Resources resources, int propertyResId, boolean defaultValue) { in getBooleanSystemProperty() argument
167 String value = getSystemProperty(resources, propertyResId); in getBooleanSystemProperty()
190 public static String getSystemProperty(@NonNull Resources resources, int propertyResId) { in getSystemProperty() argument
191 String propertyName = resources.getString(propertyResId); in getSystemProperty()
198 if (READ_ONLY_SYSTEM_PROPERTY_MAP.indexOfKey(propertyResId) >= 0) { in getSystemProperty()
199 return READ_ONLY_SYSTEM_PROPERTY_MAP.get(propertyResId); in getSystemProperty()
202 READ_ONLY_SYSTEM_PROPERTY_MAP.put(propertyResId, value); in getSystemProperty()