Home
last modified time | relevance | path

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

/aosp12/packages/apps/Car/Settings/src/com/android/car/settings/accessibility/
H A DCaptionsTextStyleListPreferenceController.java42 private final String[] mFontStyleStringValues; field in CaptionsTextStyleListPreferenceController
55 mFontStyleStringValues = new String[]{ in CaptionsTextStyleListPreferenceController()
62 mFontStyleIntValues = new int[mFontStyleStringValues.length]; in CaptionsTextStyleListPreferenceController()
63 for (int i = 0; i < mFontStyleStringValues.length; i++) { in CaptionsTextStyleListPreferenceController()
64 mFontStyleIntValues[i] = Integer.parseInt(mFontStyleStringValues[i]); in CaptionsTextStyleListPreferenceController()
76 preference.setEntryValues(mFontStyleStringValues); in updateState()