/frameworks/base/core/java/android/text/method/ |
TextKeyListener.java | 23 import android.provider.Settings; 24 import android.provider.Settings.System; 259 contentResolver.registerContentObserver(Settings.System.CONTENT_URI, true, mObserver);
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
KeyguardViewMediator.java | 19 import static android.provider.Settings.System.SCREEN_OFF_TIMEOUT; 42 import android.provider.Settings; 312 mShowLockIcon = (Settings.System.getInt(cr, "show_status_bar_lock", 0) == 1); 315 String soundPath = Settings.System.getString(cr, Settings.System.LOCK_SOUND); 322 soundPath = Settings.System.getString(cr, Settings.System.UNLOCK_SOUND); 371 long displayTimeout = Settings.System.getInt(cr, SCREEN_OFF_TIMEOUT, 375 final long lockAfterTimeout = Settings.Secure.getInt(cr, 376 Settings.Secure.LOCK_SCREEN_LOCK_AFTER_TIMEOUT [all...] |
PasswordUnlockScreen.java | 31 import android.provider.Settings; 114 Settings.Secure.getInt(mContext.getContentResolver(), 115 Settings.Secure.LOCK_PATTERN_TACTILE_FEEDBACK_ENABLED, 0)
|
/frameworks/base/services/java/com/android/server/location/ |
ComprehensiveCountryDetector.java | 23 import android.provider.Settings; 309 return Settings.System.getInt( 310 mContext.getContentResolver(), Settings.System.AIRPLANE_MODE_ON, 0) == 0;
|
/packages/apps/Contacts/src/com/android/contacts/group/ |
GroupBrowseListFragment.java | 38 import android.provider.Settings; 140 Intent intent = new Intent(Settings.ACTION_ADD_ACCOUNT); 142 intent.putExtra(Settings.EXTRA_AUTHORITIES,
|
/packages/apps/Email/src/com/android/email/ |
AttachmentInfo.java | 31 import android.provider.Settings; 149 sideloadEnabled = Settings.Secure.getInt(context.getContentResolver(), 150 Settings.Secure.INSTALL_NON_MARKET_APPS, 0 /* sideload disabled */) == 1;
|
/packages/apps/Settings/src/com/android/settings/ |
DeviceInfoSettings.java | 17 package com.android.settings; 31 import android.provider.Settings; 71 String currentIme = Settings.Secure.getString(getContentResolver(), 72 Settings.Secure.DEFAULT_INPUT_METHOD); 98 * Settings is a generic app and should not contain any device-specific
|
AccessibilityTutorialActivity.java | 17 package com.android.settings; 29 import android.provider.Settings; 51 import com.android.settings.R; 62 public static final String ACTION = "android.settings.ACCESSIBILITY_TUTORIAL"; 132 if (Settings.Secure.getInt(cr, Settings.Secure.TOUCH_EXPLORATION_ENABLED, 0) == 0) { 133 Settings.Secure.putInt(cr, Settings.Secure.TOUCH_EXPLORATION_ENABLED, 1); 146 Settings.Secure.putInt(cr, Settings.Secure.TOUCH_EXPLORATION_ENABLED, 0) [all...] |
/packages/apps/Phone/src/com/android/phone/ |
CallFeaturesSetting.java | 52 import android.provider.Settings; 68 * Top level "Call settings" UI; see res/xml/call_feature_setting.xml 70 * This preference screen is the root of the "Call settings" hierarchy 71 * available from the Phone app; the settings here let you control various 72 * features related to phone calls (including voicemail settings, SIP 73 * settings, the "Respond via SMS" feature, and others.) It's used only 80 * For the "Mobile network settings" screen under the main Settings app, 81 * see apps/Phone/src/com/android/phone/Settings.java. 89 // intent action to bring up voice mail settings 1837 VoiceMailProviderSettings settings = new VoiceMailProviderSettings(vmNumberSetting, cfi); local [all...] |
/frameworks/base/services/java/com/android/server/usb/ |
UsbDeviceManager.java | 48 import android.provider.Settings; 108 boolean enable = (Settings.Secure.getInt(mContentResolver, 109 Settings.Secure.ADB_ENABLED, 0) > 0); 171 Settings.Secure.putInt(mContentResolver, Settings.Secure.ADB_ENABLED, mAdbEnabled ? 1 : 0); 287 // register observer to listen for settings changes 289 Settings.Secure.getUriFor(Settings.Secure.ADB_ENABLED), 572 new ComponentName("com.android.settings", 573 "com.android.settings.UsbSettings")) [all...] |
/frameworks/base/services/java/com/android/server/ |
PowerManagerService.java | 54 import android.provider.Settings.SettingNotFoundException; 55 import android.provider.Settings; 60 import static android.provider.Settings.System.DIM_SCREEN; 61 import static android.provider.Settings.System.SCREEN_BRIGHTNESS; 62 import static android.provider.Settings.System.SCREEN_BRIGHTNESS_MODE; 63 import static android.provider.Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC; 64 import static android.provider.Settings.System.SCREEN_OFF_TIMEOUT; 65 import static android.provider.Settings.System.STAY_ON_WHILE_PLUGGED_IN; 66 import static android.provider.Settings.System.WINDOW_ANIMATION_SCALE; 67 import static android.provider.Settings.System.TRANSITION_ANIMATION_SCALE [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/ |
InputMethodsPanel.java | 28 import android.provider.Settings; 212 Intent intent = new Intent(Settings.ACTION_INPUT_METHOD_SETTINGS); 260 // Do not show the settings icon if the IME does not have a settings preference 394 String newEnabledIMIs = Settings.Secure.getString( 395 mContext.getContentResolver(), Settings.Secure.ENABLED_INPUT_METHODS); 415 String curInputMethodId = Settings.Secure.getString(getContext() 416 .getContentResolver(), Settings.Secure.DEFAULT_INPUT_METHOD);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/ |
KeyboardSwitcher.java | 40 import com.android.inputmethod.latin.Settings; 202 public void loadKeyboard(EditorInfo editorInfo, Settings.Values settingsValues) { 236 Settings.Values.isKeyPreviewPopupEnabled(mPrefs, mResources), 237 Settings.Values.getKeyPreviewPopupDismissDelay(mPrefs, mResources)); 300 final boolean isShift, Settings.Values settingsValues) { [all...] |
/cts/tests/tests/media/src/android/media/cts/ |
BassBoostTest.java | 158 args = {BassBoost.Settings.class} 164 BassBoost.Settings settings = mBassBoost.getProperties(); local 165 String str = settings.toString(); 166 settings = new BassBoost.Settings(str); 168 short strength = settings.strength; 172 settings.strength = strength; 173 mBassBoost.setProperties(settings); 174 settings = mBassBoost.getProperties() [all...] |
PresetReverbTest.java | 142 args = {PresetReverb.Settings.class} 148 PresetReverb.Settings settings = mReverb.getProperties(); local 149 String str = settings.toString(); 150 settings = new PresetReverb.Settings(str); 151 short preset = (settings.preset == PresetReverb.PRESET_SMALLROOM) ? 153 settings.preset = preset; 154 mReverb.setProperties(settings); 155 settings = mReverb.getProperties() [all...] |
VirtualizerTest.java | 156 args = {Virtualizer.Settings.class} 162 Virtualizer.Settings settings = mVirtualizer.getProperties(); local 163 String str = settings.toString(); 164 settings = new Virtualizer.Settings(str); 166 short strength = settings.strength; 170 settings.strength = strength; 171 mVirtualizer.setProperties(settings); 172 settings = mVirtualizer.getProperties() [all...] |
/external/webkit/Source/WebCore/page/ |
Settings.h | 53 class Settings { 54 WTF_MAKE_NONCOPYABLE(Settings); WTF_MAKE_FAST_ALLOCATED; 56 Settings(Page*);
|
/frameworks/base/core/java/android/server/search/ |
Searchables.java | 29 import android.provider.Settings; 281 // Fetch the global search provider from the system settings, 362 return Settings.Secure.getString(mContext.getContentResolver(), 363 Settings.Secure.SEARCH_GLOBAL_SEARCH_ACTIVITY);
|
/frameworks/base/core/java/android/speech/ |
SpeechRecognizer.java | 30 import android.provider.Settings; 267 String serviceComponent = Settings.Secure.getString(mContext.getContentResolver(), 268 Settings.Secure.VOICE_RECOGNITION_SERVICE);
|
/frameworks/base/core/java/android/webkit/ |
AccessibilityInjector.java | 19 import android.provider.Settings; 45 * {@link android.provider.Settings.Secure#ACCESSIBILITY_WEB_CONTENT_KEY_BINDINGS}. 342 String webContentKeyBindingsString = Settings.Secure.getString( 344 Settings.Secure.ACCESSIBILITY_WEB_CONTENT_KEY_BINDINGS);
|
/frameworks/base/core/java/com/android/internal/widget/ |
PasswordEntryKeyboardHelper.java | 27 import android.provider.Settings; 134 final boolean visiblePassword = Settings.System.getInt( 136 Settings.System.TEXT_SHOW_PASSWORD, 1) != 0;
|
/packages/apps/Settings/src/com/android/settings/inputmethod/ |
InputMethodPreference.java | 17 package com.android.settings.inputmethod; 19 import com.android.settings.R; 20 import com.android.settings.SettingsPreferenceFragment; 31 import android.provider.Settings; 112 bundle.putString(Settings.EXTRA_INPUT_METHOD_ID, imiId); 128 Log.d(TAG, "IME's Settings Activity Not Found: " + e); 129 // If the IME's settings activity does not exist, we can just 140 bundle.putString(Settings.EXTRA_INPUT_METHOD_ID, imiId);
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/languageswitcher/ |
InputLanguageSelection.java | 24 import com.android.inputmethod.latin.Settings; 82 // Get the settings preferences 84 mSelectedLanguages = mPrefs.getString(Settings.PREF_SELECTED_LANGUAGES, ""); 208 editor.putString(Settings.PREF_SELECTED_LANGUAGES, checkedLanguages);
|
/external/webkit/Source/WebCore/bindings/generic/ |
BindingSecurity.h | 41 #include "Settings.h" 124 Settings* settings = frame->settings(); local 125 return settings && settings->javaScriptCanOpenWindowsAutomatically();
|
/external/webkit/Source/WebCore/html/ |
PluginDocument.cpp | 40 #include "Settings.h" 117 Settings* settings = frame->settings(); 118 if (!settings || !frame->loader()->subframeLoader()->allowPlugins(NotAboutToInstantiatePlugin))
|