Home
last modified time | relevance | path

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

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
DSettingsViewModel.java35 public PreferenceContentProviderLiveData getVisibilityLiveData(String compoundKey) { in getVisibilityLiveData() argument
36 if (!mPreferenceVisibilityLiveDataMap.containsKey(compoundKey)) { in getVisibilityLiveData()
37 init(compoundKey); in getVisibilityLiveData()
39 return mPreferenceVisibilityLiveDataMap.get(compoundKey); in getVisibilityLiveData()
42 public void init(String compoundKey) { in init() argument
43 mPreferenceVisibilityLiveDataMap.put(compoundKey, in init()
44 new PreferenceContentProviderLiveData(compoundKey, getApplication())); in init()
/packages/apps/TvSettings/SettingsAPI/java/com/android/tv/settings/library/data/
DPreferenceCompatManager.java45 String compoundKey = getKey(key); in getOrCreatePrefCompat() local
46 if (!mPrefCompats.containsKey(compoundKey)) { in getOrCreatePrefCompat()
47 mPrefCompats.put(compoundKey, new PreferenceCompat(key)); in getOrCreatePrefCompat()
49 return mPrefCompats.get(compoundKey); in getOrCreatePrefCompat()
65 String compoundKey = getKey(key); in getPrefCompat() local
66 return mPrefCompats.get(compoundKey); in getPrefCompat()
/packages/apps/TvSettings/SettingsAPI/java/com/android/tv/settings/library/device/display/displaysound/
DHdrFormatPreferenceController.java106 String[] compoundKey = mDisplayReportedHdrTypes.contains(mHdrType) in getPreferenceKey() local
109 return compoundKey; in getPreferenceKey()
DSoundFormatPreferenceController.java179 String[] compoundKey = mReportedFormats.contains(mFormatId) in getPreferenceKey() local
182 return compoundKey; in getPreferenceKey()
DHdrFormatSelectionState.java179 String[] compoundKey = mDisplayReportedHdrTypes.contains(hdrType) in createFormatInfo() local
182 PreferenceCompat pref = createPreference(title, compoundKey); in createFormatInfo()
DAdvancedVolumeState.java312 String[] compoundKey = mReportedFormats.contains(formatId) in createFormatInfoPreferences() local
315 PreferenceCompat pref = createPreference(title, compoundKey); in createFormatInfoPreferences()