Home | History | Annotate | Download | only in development

Lines Matching defs:Settings

17 package com.android.settings.development;
19 import static com.android.settings.development.AllowAppsOnExternalPreferenceController.SETTING_VALUE_OFF;
20 import static com.android.settings.development.AllowAppsOnExternalPreferenceController.SETTING_VALUE_ON;
26 import android.provider.Settings;
30 import com.android.settings.testutils.SettingsRobolectricTestRunner;
64 final int mode = Settings.Global.getInt(mContext.getContentResolver(),
65 Settings.Global.FORCE_ALLOW_ON_EXTERNAL, -1 /* default */);
74 final int mode = Settings.Global.getInt(mContext.getContentResolver(),
75 Settings.Global.FORCE_ALLOW_ON_EXTERNAL, -1 /* default */);
82 Settings.Global.putInt(mContext.getContentResolver(),
83 Settings.Global.FORCE_ALLOW_ON_EXTERNAL, SETTING_VALUE_OFF);
91 Settings.Global.putInt(mContext.getContentResolver(),
92 Settings.Global.FORCE_ALLOW_ON_EXTERNAL, SETTING_VALUE_ON);
102 final int mode = Settings.Global.getInt(mContext.getContentResolver(),
103 Settings.Global.FORCE_ALLOW_ON_EXTERNAL, -1 /* default */);