Home | History | Annotate | Download | only in settings

Lines Matching defs:automatic

164     public void onChanged(ToggleSlider view, boolean tracking, boolean automatic, int value) {
165 setMode(automatic ? Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC
167 updateIcon(automatic);
168 if (!automatic) {
200 private void updateIcon(boolean automatic) {
202 mIcon.setImageResource(automatic ?
211 int automatic;
213 automatic = Settings.System.getIntForUser(mContext.getContentResolver(),
217 automatic = 0;
219 mControl.setChecked(automatic != 0);
220 updateIcon(automatic != 0);
223 updateIcon(false /*automatic*/);