Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/content/pm/
DUserProperties.java244 private final @Nullable UserProperties mDefaultProperties; field in UserProperties
505 mDefaultProperties = defaultProperties; in UserProperties()
521 if (orig.mDefaultProperties == null) { in UserProperties()
525 this.mDefaultProperties = null; in UserProperties()
598 if (mDefaultProperties != null) return mDefaultProperties.mShowInLauncher; in getShowInLauncher()
625 if (mDefaultProperties != null) return mDefaultProperties.mShowInSettings; in getShowInSettings()
655 if (mDefaultProperties != null) return mDefaultProperties.mShowInQuietMode; in getShowInQuietMode()
679 if (mDefaultProperties != null) return mDefaultProperties.mShowInSharingSurfaces; in getShowInSharingSurfaces()
697 if (mDefaultProperties != null) return mDefaultProperties.mStartWithParent; in getStartWithParent()
715 if (mDefaultProperties != null) return mDefaultProperties.mDeleteAppWithParent; in getDeleteAppWithParent()
[all …]
/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/util/
DDeviceConfigProxyFake.java39 private Map<String, Map<String, String>> mDefaultProperties = new HashMap<>(); field in DeviceConfigProxyFake
67 setPropertyInternal(namespace, name, value, mDefaultProperties); in setProperty()
89 if (mDefaultProperties.containsKey(namespace)) { in propsForNamespaceAndName()
91 .setString(name, mDefaultProperties.get(namespace).get(name)).build(); in propsForNamespaceAndName()