Home | History | Annotate | Download | only in system

Lines Matching defs:Secure

191         return Settings.Secure.getInt(getContext().getContentResolver(),
192 Settings.Secure.ACCESSIBILITY_CAPTIONING_ENABLED, 0) != 0;
196 Settings.Secure.putInt(getContext().getContentResolver(),
197 Settings.Secure.ACCESSIBILITY_CAPTIONING_ENABLED, enabled ? 1 : 0);
201 return Settings.Secure.getInt(getContext().getContentResolver(),
202 Settings.Secure.ACCESSIBILITY_CAPTIONING_PRESET, 0);
206 Settings.Secure.putInt(getContext().getContentResolver(),
207 Settings.Secure.ACCESSIBILITY_CAPTIONING_PRESET, style);
213 return Settings.Secure.getString(getContext().getContentResolver(),
214 Settings.Secure.ACCESSIBILITY_CAPTIONING_LOCALE);
218 Settings.Secure.putString(getContext().getContentResolver(),
219 Settings.Secure.ACCESSIBILITY_CAPTIONING_LOCALE, locale);
223 final float textSize = Settings.Secure.getFloat(getContext().getContentResolver(),
224 Settings.Secure.ACCESSIBILITY_CAPTIONING_FONT_SCALE, 1);
242 Settings.Secure.putFloat(getContext().getContentResolver(),
243 Settings.Secure.ACCESSIBILITY_CAPTIONING_FONT_SCALE, Float.parseFloat(textSize));