HomeSort by relevance Sort by last modified time
    Searched refs:Settings (Results 51 - 75 of 656) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/Settings/src/com/android/settings/accessibility/
CaptionPropertiesFragment.java 17 package com.android.settings.accessibility;
28 import android.provider.Settings;
32 import com.android.settings.R;
33 import com.android.settings.SettingsPreferenceFragment;
34 import com.android.settings.accessibility.ListDialogPreference.OnValueChangedListener;
37 * Settings fragment containing captioning properties.
195 Settings.Secure.putInt(
196 cr, Settings.Secure.ACCESSIBILITY_CAPTIONING_FOREGROUND_COLOR, value);
206 Settings.Secure.putInt(
207 cr, Settings.Secure.ACCESSIBILITY_CAPTIONING_BACKGROUND_COLOR, argb)
    [all...]
  /external/chromium_org/tools/gn/
settings.h 16 // Holds the settings for one toolchain invocation. There will be one
17 // Settings object for each toolchain type, each referring to the same
20 // The Settings object is const once it is constructed, which allows us to
27 class Settings {
36 // Constructs a toolchain settings. The output_subdir_name is the name we
40 Settings(const BuildSettings* build_settings,
43 ~Settings();
74 // context of a given settings object.
118 DISALLOW_COPY_AND_ASSIGN(Settings);
scope_per_file_provider.h 33 static std::string GetRootOutputDirWithNoLastSlash(const Settings* settings);
34 static std::string GetRootGenDirWithNoLastSlash(const Settings* settings);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/settings/
BrightnessController.java 17 package com.android.systemui.settings;
30 import android.provider.Settings;
31 import android.provider.Settings.SettingNotFoundException;
62 Settings.System.getUriFor(Settings.System.SCREEN_BRIGHTNESS_MODE);
64 Settings.System.getUriFor(Settings.System.SCREEN_BRIGHTNESS);
161 setMode(automatic ? Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC
162 : Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL);
170 Settings.System.putIntForUser(mContext.getContentResolver()
    [all...]
  /packages/apps/PhoneCommon/src/com/android/phone/common/
HapticFeedback.java 24 import android.provider.Settings;
25 import android.provider.Settings.System;
37 * system Settings activity. It must be rechecked each time the
75 private Settings.System mSystemSettings;
84 * @param context To look up the resources and system settings.
86 * the system settings.
95 mSystemSettings = new Settings.System();
102 * Reload the system settings to check if the user enabled the
  /packages/apps/Settings/src/com/android/settings/
SubSettings.java 17 package com.android.settings;
22 import com.android.settings.ChooseLockGeneric.ChooseLockGenericFragment;
25 * Stub class for showing sub-settings; we can't use the main Settings class
28 public class SubSettings extends Settings {
AirplaneModeEnabler.java 17 package com.android.settings;
28 import android.provider.Settings;
79 Settings.Global.getUriFor(Settings.Global.AIRPLANE_MODE_ON), true,
90 return Settings.Global.getInt(context.getContentResolver(),
91 Settings.Global.AIRPLANE_MODE_ON, 0) != 0;
96 Settings.Global.putInt(mContext.getContentResolver(), Settings.Global.AIRPLANE_MODE_ON,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SettingsSecureCompatUtils.java 22 // Note that Settings.Secure.ACCESSIBILITY_SPEAK_PASSWORD has been introduced
25 android.provider.Settings.Secure.class, "ACCESSIBILITY_SPEAK_PASSWORD");
  /frameworks/base/media/java/android/media/audiofx/
LoudnessEnhancer.java 211 * The Settings class regroups the LoudnessEnhancer parameters. It is used in
215 public static class Settings {
218 public Settings() {
222 * Settings class constructor from a key=value; pairs formatted string. The string is
223 * typically returned by Settings.toString() method.
226 public Settings(String settings) {
227 StringTokenizer st = new StringTokenizer(settings, "=;");
230 throw new IllegalArgumentException("settings: " + settings);
270 Settings settings = new Settings(); local
    [all...]
PresetReverb.java 234 * The Settings class regroups all preset reverb parameters. It is used in
238 public static class Settings {
241 public Settings() {
245 * Settings class constructor from a key=value; pairs formatted string. The string is
246 * typically returned by Settings.toString() method.
249 public Settings(String settings) {
250 StringTokenizer st = new StringTokenizer(settings, "=;");
253 throw new IllegalArgumentException("settings: " + settings);
292 Settings settings = new Settings(); local
    [all...]
  /frameworks/base/services/java/com/android/server/
DockObserver.java 32 import android.provider.Settings;
137 if (Settings.Global.getInt(cr,
138 Settings.Global.DEVICE_PROVISIONED, 0) == 0) {
150 if (Settings.Global.getInt(cr,
151 Settings.Global.DOCK_SOUNDS_ENABLED, 1) == 1) {
157 whichSound = Settings.Global.DESK_UNDOCK_SOUND;
159 whichSound = Settings.Global.CAR_UNDOCK_SOUND;
165 whichSound = Settings.Global.DESK_DOCK_SOUND;
167 whichSound = Settings.Global.CAR_DOCK_SOUND;
172 final String soundPath = Settings.Global.getString(cr, whichSound)
    [all...]
  /frameworks/base/core/java/android/provider/
Settings.java 63 * The Settings provider contains global system-level device preferences.
65 public final class Settings {
67 // Intent actions for Settings
70 * Activity Action: Show system settings.
77 public static final String ACTION_SETTINGS = "android.settings.SETTINGS";
80 * Activity Action: Show settings to allow configuration of APNs.
87 public static final String ACTION_APN_SETTINGS = "android.settings.APN_SETTINGS";
90 * Activity Action: Show settings to allow configuration of current location
102 "android.settings.LOCATION_SOURCE_SETTINGS"
    [all...]
  /frameworks/base/core/java/android/service/dreams/
Sandman.java 27 import android.provider.Settings;
111 return Settings.Secure.getIntForUser(context.getContentResolver(),
112 Settings.Secure.SCREENSAVER_ENABLED, def,
119 return Settings.Secure.getIntForUser(context.getContentResolver(),
120 Settings.Secure.SCREENSAVER_ACTIVATE_ON_DOCK, def,
  /packages/apps/Settings/src/com/android/settings/nfc/
PaymentBackend.java 17 package com.android.settings.nfc;
26 import android.provider.Settings;
32 public static final String TAG = "Settings.PaymentBackend";
78 String componentString = Settings.Secure.getString(mContext.getContentResolver(),
79 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT);
88 Settings.Secure.putString(mContext.getContentResolver(),
89 Settings.Secure.NFC_PAYMENT_DEFAULT_COMPONENT,
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
LocationController.java 32 import android.provider.Settings;
63 * A callback for change in location settings (the user has enabled/disabled location).
67 * Called whenever location settings change.
70 * is enabled in settings.
86 // Register to listen for changes in location settings.
105 * Add a callback to listen for changes in location settings.
112 * Enable or disable location in settings.
131 ? Settings.Secure.LOCATION_MODE_HIGH_ACCURACY : Settings.Secure.LOCATION_MODE_OFF;
132 // QuickSettings always runs as the owner, so specifically set the settings
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
EnableAccessibilityController.java 33 import android.provider.Settings;
111 mTone = RingtoneManager.getRingtone(context, Settings.System.DEFAULT_NOTIFICATION_URI);
128 return Settings.Global.getInt(context.getContentResolver(),
129 Settings.Global.ENABLE_ACCESSIBILITY_GLOBAL_GESTURE_ENABLED, 0) == 1
252 Settings.Secure.putStringForUser(resolver,
253 Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES,
256 Settings.Secure.putStringForUser(resolver,
257 Settings.Secure.TOUCH_EXPLORATION_GRANTED_ACCESSIBILITY_SERVICES,
261 Settings.Secure.putIntForUser(resolver, Settings.Secure.TOUCH_EXPLORATION_ENABLED
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Settings.h 62 class Settings {
63 WTF_MAKE_NONCOPYABLE(Settings); WTF_MAKE_FAST_ALLOCATED;
65 static PassOwnPtr<Settings> create(Page*);
160 explicit Settings(Page*);
197 Timer<Settings> m_setImageLoadingSettingsTimer;
198 void imageLoadingSettingsTimerFired(Timer<Settings>*);
  /packages/services/Telephony/src/com/android/phone/
CdmaSubscriptionListPreference.java 25 import android.provider.Settings;
26 import android.provider.Settings.Secure;
57 int cdmaSubscriptionMode = Settings.Global.getInt(mPhone.getContext().getContentResolver(),
58 Settings.Global.CDMA_SUBSCRIPTION_MODE, preferredSubscriptionMode);
124 Settings.Global.putInt(mPhone.getContext().getContentResolver(),
125 Settings.Global.CDMA_SUBSCRIPTION_MODE,
  /development/apps/Development/src/com/android/development/
Development.java 25 import android.provider.Settings;
38 Intent settingsIntent = new Intent(Settings.ACTION_APPLICATION_DEVELOPMENT_SETTINGS);
  /development/samples/ApiDemos/src/com/example/android/apis/accessibility/
ClockBackActivity.java 22 import android.provider.Settings;
34 /** An intent for launching the system settings. */
36 new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS);
46 // Add a shortcut to the accessibility settings.
TaskListActivity.java 24 import android.provider.Settings;
31 /** An intent for launching the system settings. */
33 new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS);
50 // Add a shortcut to the accessibility settings.
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
ImePreferences.java 31 modIntent.putExtra(EXTRA_SHOW_FRAGMENT, Settings.class.getName());
44 public static class Settings extends InputMethodSettingsFragment {
  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentInit.h 42 class Settings;
62 Settings* settings() const;
  /packages/apps/Settings/tests/
Android.mk 15 LOCAL_INSTRUMENTATION_FOR := Settings
  /packages/apps/SpareParts/src/com/android/spare_parts/
Enabler.java 25 import android.provider.Settings;
35 Settings.System.ADVANCED_SETTINGS_DEFAULT) != 0;

Completed in 592 milliseconds

1 23 4 5 6 7 8 91011>>