Lines Matching refs:Settings
17 package com.android.settings;
31 import android.provider.Settings;
32 import android.provider.Settings.SettingNotFoundException;
40 import com.android.settings.dashboard.SummaryLoader;
94 boolean autoTimeEnabled = getAutoState(Settings.Global.AUTO_TIME);
95 boolean autoTimeZoneEnabled = getAutoState(Settings.Global.AUTO_TIME_ZONE);
108 // Settings.Global.AUTO_TIME to true. Note that this app listens to that change.
194 Settings.Global.putInt(getContentResolver(), Settings.Global.AUTO_TIME,
200 Settings.Global.putInt(
201 getContentResolver(), Settings.Global.AUTO_TIME_ZONE, autoZoneEnabled ? 1 : 0);
298 /* Get & Set values from the system settings */
305 Settings.System.putString(getContentResolver(),
306 Settings.System.TIME_12_24,
312 return Settings.Global.getInt(getContentResolver(), name) > 0;