HomeSort by relevance Sort by last modified time
    Searched refs:Settings (Results 151 - 175 of 481) sorted by null

1 2 3 4 5 67 8 91011>>

  /packages/apps/Phone/src/com/android/phone/
CdmaSubscriptionListPreference.java 25 import android.provider.Settings.Secure;
57 android.provider.Settings.Secure.CDMA_SUBSCRIPTION_MODE, preferredSubscriptionMode);
CdmaVoicePrivacyCheckBoxPreference.java 89 android.provider.Settings.Secure.putInt(getContext().getContentResolver(),
90 android.provider.Settings.Secure.ENHANCED_VOICE_PRIVACY_ENABLED, enable);
  /packages/apps/Settings/src/com/android/settings/bluetooth/
BluetoothEnabler.java 17 package com.android.settings.bluetooth;
24 import android.provider.Settings;
29 import com.android.settings.R;
30 import com.android.settings.WirelessSettings;
106 !WirelessSettings.isRadioAllowed(mContext, Settings.System.RADIO_BLUETOOTH)) {
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Settings.java 57 public class Settings extends InputMethodSettingsActivity
60 private static final String TAG = Settings.class.getSimpleName();
162 // Get the settings preferences
164 mVibrateOn = hasVibrator && prefs.getBoolean(Settings.PREF_VIBRATE_ON,
166 mSoundOn = prefs.getBoolean(Settings.PREF_SOUND_ON,
170 mAutoCap = prefs.getBoolean(Settings.PREF_AUTO_CAP, true);
177 mUseContactsDict = prefs.getBoolean(Settings.PREF_KEY_USE_CONTACTS_DICT, true);
179 prefs.getBoolean(Settings.PREF_KEY_ENABLE_SPAN_INSERT, true);
183 ? prefs.getBoolean(Settings.PREF_SHOW_SETTINGS_KEY, defaultShowSettingsKey)
216 Settings.PREF_AUTO_CORRECTION_THRESHOLD
    [all...]
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
RealSystemFacade.java 11 import android.provider.Settings;
12 import android.provider.Settings.SettingNotFoundException;
  /frameworks/base/services/tests/servicestests/src/com/android/server/
DropBoxTest.java 29 import android.provider.Settings;
48 Settings.Secure.putString(cr, Settings.Secure.DROPBOX_AGE_SECONDS, "");
49 Settings.Secure.putString(cr, Settings.Secure.DROPBOX_MAX_FILES, "");
50 Settings.Secure.putString(cr, Settings.Secure.DROPBOX_QUOTA_KB, "");
51 Settings.Secure.putString(cr, Settings.Secure.DROPBOX_TAG_PREFIX + "DropBoxTest", "");
257 Settings.Secure.putString(cr, Settings.Secure.DROPBOX_TAG_PREFIX + "DropBoxTest"
    [all...]
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
LegacyApiSupport.java 62 import android.provider.ContactsContract.Settings;
118 private static final int SETTINGS = 44;
216 public static final String SETTINGS = "v1_settings";
355 matcher.addURI(authority, "settings", SETTINGS);
    [all...]
  /cts/tests/tests/permission/src/android/permission/cts/
ProviderPermissionTest.java 72 * Verify that write to settings requires permissions.
77 assertWritingContentUriRequiresPermission(android.provider.Settings.System.CONTENT_URI,
  /development/samples/RenderScript/Fountain/src/com/example/android/rs/fountain/
Fountain.java 28 import android.provider.Settings.System;
  /external/webkit/Source/WebCore/html/
HTMLImageLoader.cpp 32 #include "Settings.h"
65 Settings* settings = element()->document()->settings(); local
66 if (settings && settings->usesDashboardBackwardCompatibilityMode() && attr.length() > 7 && attr.startsWith("url(\"") && attr.endsWith("\")"))
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DoNotDisturbController.java 24 import android.provider.Settings;
  /frameworks/base/telephony/java/android/telephony/
CellLocation.java 23 import android.provider.Settings;
  /frameworks/base/tests/RenderScriptTests/FBOTest/src/com/android/fbotest/
FBOSync.java 29 import android.provider.Settings.System;
FBOTest.java 29 import android.provider.Settings.System;
  /frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
RSTest.java 28 import android.provider.Settings.System;
  /packages/apps/Settings/src/com/android/settings/tts/
TextToSpeechSettings.java 17 package com.android.settings.tts;
19 import static android.provider.Settings.Secure.TTS_DEFAULT_RATE;
20 import static android.provider.Settings.Secure.TTS_DEFAULT_SYNTH;
22 import com.android.settings.R;
23 import com.android.settings.SettingsPreferenceFragment;
24 import com.android.settings.tts.TtsEnginePreference.RadioButtonGroupState;
36 import android.provider.Settings;
37 import android.provider.Settings.SettingNotFoundException;
100 * The initialization listener used when we are initalizing the settings
165 mDefaultRate = Settings.Secure.getInt(resolver, TTS_DEFAULT_RATE)
    [all...]
  /frameworks/base/core/java/android/preference/
VolumePreference.java 30 import android.provider.Settings;
31 import android.provider.Settings.System;
275 defaultUri = Settings.System.DEFAULT_RINGTONE_URI;
277 defaultUri = Settings.System.DEFAULT_NOTIFICATION_URI;
279 defaultUri = Settings.System.DEFAULT_ALARM_ALERT_URI;
  /frameworks/base/core/java/android/text/format/
DateFormat.java 20 import android.provider.Settings;
204 String value = Settings.System.getString(context.getContentResolver(),
205 Settings.System.TIME_12_24);
270 String value = Settings.System.getString(context.getContentResolver(),
271 Settings.System.DATE_FORMAT);
393 String value = Settings.System.getString(context.getContentResolver(),
394 Settings.System.DATE_FORMAT);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/power/
PowerUI.java 36 import android.provider.Settings;
236 if (Settings.System.getInt(cr, Settings.System.POWER_SOUNDS_ENABLED, 1) == 1) {
237 final String soundPath = Settings.System.getString(cr,
238 Settings.System.LOW_BATTERY_SOUND);
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 43 import android.provider.Settings;
44 import android.provider.Settings.SettingNotFoundException;
193 // System setting property AIRPLANE_MODE_ON is set in Settings.
194 int airplaneMode = Settings.System.getInt(cr, Settings.System.AIRPLANE_MODE_ON, 0);
198 Settings.System.getUriFor(Settings.System.AUTO_TIME), true,
201 Settings.System.getUriFor(Settings.System.AUTO_TIME_ZONE), true,
    [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LockPatternUtils.java 34 import android.provider.Settings;
54 * Utilities for the lock pattern and its settings.
165 * @param contentResolver Used to look up and save settings.
505 // Cant do much, unless we want to fail over to using the settings
676 // Cant do much, unless we want to fail over to using the settings provider
    [all...]
  /frameworks/base/core/tests/coretests/src/android/webkit/
AccessibilityInjectorTest.java 27 import android.provider.Settings;
    [all...]
  /frameworks/base/services/java/com/android/server/
ConnectivityService.java 70 import android.provider.Settings;
243 * used internally to reload global proxy settings
337 String id = Settings.Secure.getString(context.getContentResolver(),
338 Settings.Secure.ANDROID_ID);
346 String dns = Settings.Secure.getString(context.getContentResolver(),
347 Settings.Secure.DEFAULT_DNS_SERVER);
649 Settings.Secure.putInt(cr, Settings.Secure.NETWORK_PREFERENCE, preference);
661 /** Check system properties for the default value then use secure settings value, if any. */
663 "conn." + Settings.Secure.CONNECTIVITY_CHANGE_DELAY
    [all...]
DropBoxManagerService.java 33 import android.provider.Settings;
144 Settings.Secure.CONTENT_URI, true,
248 return !"disabled".equals(Settings.Secure.getString(
249 mContentResolver, Settings.Secure.DROPBOX_TAG_PREFIX + tag));
671 int ageSeconds = Settings.Secure.getInt(mContentResolver,
672 Settings.Secure.DROPBOX_AGE_SECONDS, DEFAULT_AGE_SECONDS);
673 int maxFiles = Settings.Secure.getInt(mContentResolver,
674 Settings.Secure.DROPBOX_MAX_FILES, DEFAULT_MAX_FILES);
693 int quotaPercent = Settings.Secure.getInt(mContentResolver,
694 Settings.Secure.DROPBOX_QUOTA_PERCENT, DEFAULT_QUOTA_PERCENT)
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
KeyguardUpdateMonitor.java 35 import android.provider.Settings;
212 mDeviceProvisioned = Settings.Secure.getInt(
213 mContext.getContentResolver(), Settings.Secure.DEVICE_PROVISIONED, 0) != 0;
222 mDeviceProvisioned = Settings.Secure.getInt(mContext.getContentResolver(),
223 Settings.Secure.DEVICE_PROVISIONED, 0) != 0;
232 Settings.Secure.getUriFor(Settings.Secure.DEVICE_PROVISIONED),
237 boolean provisioned = Settings.Secure.getInt(mContext.getContentResolver(),
238 Settings.Secure.DEVICE_PROVISIONED, 0) != 0;

Completed in 838 milliseconds

1 2 3 4 5 67 8 91011>>