HomeSort by relevance Sort by last modified time
    Searched defs:Settings (Results 1 - 25 of 137) sorted by null

1 2 3 4 5 6

  /external/webkit/Source/WebCore/inspector/front-end/
Settings.js 55 WebInspector.Settings = function()
79 WebInspector.Settings.prototype = {
108 WebInspector.Settings.prototype.__proto__ = WebInspector.Object.prototype;
  /external/webkit/Source/WebCore/inspector/
InspectorFrontendClientLocal.h 48 class Settings {
50 Settings() { }
51 virtual ~Settings() { }
56 InspectorFrontendClientLocal(InspectorController*, Page*, PassOwnPtr<Settings>);
88 OwnPtr<InspectorFrontendClientLocal::Settings> m_settings;
  /development/apps/SdkSetup/src/com/android/sdksetup/
DefaultActivity.java 28 import android.provider.Settings;
41 Settings.Secure.putInt(getContentResolver(), Settings.Secure.DEVICE_PROVISIONED, 1);
44 // Not needed since this SDK will contain the Settings app.
45 Settings.Secure.putString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED, LocationManager.GPS_PROVIDER);
48 Settings.Secure.putInt(getContentResolver(), Settings.Secure.INSTALL_NON_MARKET_APPS, 1);
  /cts/tests/tests/provider/src/android/provider/cts/
Contacts_SettingsTest.java 20 import android.provider.Contacts.Settings;
37 Settings.setSetting(mContentResolver, "account", key1, value1);
38 Settings.setSetting(mContentResolver, "account", key2, value2);
39 assertEquals(value1, Settings.getSetting(mContentResolver, "account", key1));
40 assertEquals(value2, Settings.getSetting(mContentResolver, "account", key2));
41 assertNull(Settings.getSetting(mContentResolver, "account", "key not exist"));
43 Settings.setSetting(mContentResolver, "account", key1, value2);
44 assertEquals(value2, Settings.getSetting(mContentResolver, "account", key1));
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SettingsActivity.java 28 import com.android.inputmethod.pinyin.Settings;
48 addPreferencesFromResource(R.xml.settings);
61 Settings.getInstance(PreferenceManager
77 Settings.releaseInstance();
84 Settings.setKeySound(mKeySoundPref.isChecked());
85 Settings.setVibrate(mVibratePref.isChecked());
86 Settings.setPrediction(mPredictionPref.isChecked());
88 Settings.writeBack();
96 mKeySoundPref.setChecked(Settings.getKeySound());
97 mVibratePref.setChecked(Settings.getVibrate())
    [all...]
  /cts/suite/audio_quality/lib/include/
Settings.h 23 class Settings {
25 static Settings* Instance();
38 static Settings* mInstance;
  /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/webkit/Tools/Scripts/
bisect-builds 66 my $branch = $Settings::branch;
67 my $nightlyDownloadDirectory = $Settings::nightlyDownloadDirectory;
68 my $safariPath = $Settings::safariPath;
288 package Settings;
  /frameworks/base/core/tests/coretests/src/android/os/
BrightnessLimit.java 25 import android.provider.Settings;
57 Settings.System.putInt(getContentResolver(), Settings.System.SCREEN_BRIGHTNESS, 0);
  /packages/apps/Provision/src/com/android/provision/
DefaultActivity.java 23 import android.provider.Settings;
35 Settings.Secure.putInt(getContentResolver(), Settings.Secure.DEVICE_PROVISIONED, 1);
  /packages/apps/Settings/src/com/android/settings/
SoundSettings.java 17 package com.android.settings;
40 import android.provider.Settings;
123 mVibrateWhenRinging.setChecked(Settings.System.getInt(resolver,
124 Settings.System.VIBRATE_WHEN_RINGING, 0) != 0);
128 mDtmfTone.setChecked(Settings.System.getInt(resolver,
129 Settings.System.DTMF_TONE_WHEN_DIALING, 1) != 0);
132 mSoundEffects.setChecked(Settings.System.getInt(resolver,
133 Settings.System.SOUND_EFFECTS_ENABLED, 1) != 0);
136 mHapticFeedback.setChecked(Settings.System.getInt(resolver,
137 Settings.System.HAPTIC_FEEDBACK_ENABLED, 1) != 0)
    [all...]
ApplicationSettings.java 17 package com.android.settings;
26 import android.provider.Settings;
63 boolean userSetInstLocation = (Settings.System.getInt(getContentResolver(),
64 Settings.Secure.SET_INSTALL_LOCATION, 0) != 0);
81 Settings.System.putInt(getContentResolver(),
82 Settings.Secure.DEFAULT_INSTALL_LOCATION, APP_INSTALL_DEVICE);
84 Settings.System.putInt(getContentResolver(),
85 Settings.Secure.DEFAULT_INSTALL_LOCATION, APP_INSTALL_SDCARD);
87 Settings.System.putInt(getContentResolver(),
88 Settings.Secure.DEFAULT_INSTALL_LOCATION, APP_INSTALL_AUTO)
    [all...]
LocationSettings.java 17 package com.android.settings;
30 import android.provider.Settings;
39 * Gesture lock pattern settings.
44 // Location Settings
55 // These provide support for receiving notification when Location Manager settings change.
56 // This is necessary because the Network Location Provider can change settings
65 // listen for Location Manager settings changes
66 Cursor settingsCursor = getContentResolver().query(Settings.Secure.CONTENT_URI, null,
67 "(" + Settings.System.NAME + "=?)",
68 new String[]{Settings.Secure.LOCATION_PROVIDERS_ALLOWED}
    [all...]
BrightnessPreference.java 17 package com.android.settings;
30 import android.provider.Settings;
31 import android.provider.Settings.SettingNotFoundException;
92 Settings.System.getUriFor(Settings.System.SCREEN_BRIGHTNESS), true,
96 Settings.System.getUriFor(Settings.System.SCREEN_BRIGHTNESS_MODE), true,
114 mAutomaticMode = mOldAutomatic == Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC;
137 setMode(isChecked ? Settings.System.SCREEN_BRIGHTNESS_MODE_AUTOMATIC
138 : Settings.System.SCREEN_BRIGHTNESS_MODE_MANUAL)
    [all...]
DateTimeSettings.java 17 package com.android.settings;
35 import android.provider.Settings;
36 import android.provider.Settings.SettingNotFoundException;
84 boolean autoTimeEnabled = getAutoState(Settings.System.AUTO_TIME);
85 boolean autoTimeZoneEnabled = getAutoState(Settings.System.AUTO_TIME_ZONE);
116 // Initialize if DATE_FORMAT is not set in the system settings
209 Settings.System.putString(getContentResolver(),
210 Settings.System.DATE_FORMAT, format);
214 Settings.System.putInt(getContentResolver(), Settings.System.AUTO_TIME
    [all...]
OwnerInfoSettings.java 17 package com.android.settings;
22 import android.provider.Settings;
46 String info = Settings.Secure.getString(res, Settings.Secure.LOCK_SCREEN_OWNER_INFO);
47 int enabled = Settings.Secure.getInt(res,
48 Settings.Secure.LOCK_SCREEN_OWNER_INFO_ENABLED, 1);
56 Settings.Secure.putInt(res, Settings.Secure.LOCK_SCREEN_OWNER_INFO_ENABLED,
72 Settings.Secure.putString(res, Settings.Secure.LOCK_SCREEN_OWNER_INFO, info)
    [all...]
DevelopmentSettings.java 17 package com.android.settings;
55 import android.provider.Settings;
308 mLastEnabledState = Settings.Secure.getInt(cr,
309 Settings.Secure.DEVELOPMENT_SETTINGS_ENABLED, 0) != 0;
315 // settings that are enabled. This is an invalid state. Switch
316 // to debug settings being enabled, so the user knows there is
318 Settings.Secure.putInt(getActivity().getContentResolver(),
319 Settings.Secure.DEVELOPMENT_SETTINGS_ENABLED, 1);
334 updateCheckBox(mEnableAdb, Settings.Secure.getInt(cr,
335 Settings.Secure.ADB_ENABLED, 0) != 0)
    [all...]
  /packages/apps/SpareParts/src/com/android/spare_parts/
SpareParts.java 1 /* //device/apps/Settings/src/com/android/settings/Keyguard.java
37 import android.provider.Settings;
38 import android.provider.Settings.SettingNotFoundException;
128 mCompatibilityMode.setChecked(Settings.System.getInt(getContentResolver(),
129 Settings.System.COMPATIBILITY_MODE, 1) != 0);
145 mFancyImeAnimationsPref.setChecked(Settings.System.getInt(
147 Settings.System.FANCY_IME_ANIMATIONS, 0) != 0);
148 mHapticFeedbackPref.setChecked(Settings.System.getInt(
150 Settings.System.HAPTIC_FEEDBACK_ENABLED, 0) != 0)
    [all...]
  /packages/apps/Phone/src/com/android/phone/sip/
SipSharedPreferences.java 24 import android.provider.Settings;
25 import android.provider.Settings.SettingNotFoundException;
82 Settings.System.putString(mContext.getContentResolver(),
83 Settings.System.SIP_CALL_OPTIONS, option);
87 String option = Settings.System.getString(mContext.getContentResolver(),
88 Settings.System.SIP_CALL_OPTIONS);
94 Settings.System.putInt(mContext.getContentResolver(),
95 Settings.System.SIP_RECEIVE_CALLS, (enabled ? 1 : 0));
100 return (Settings.System.getInt(mContext.getContentResolver(),
101 Settings.System.SIP_RECEIVE_CALLS) != 0)
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmPreference.java 25 import android.provider.Settings;
46 Settings.System.putString(getContext().getContentResolver(),
47 Settings.System.ALARM_ALERT,
75 Settings.System.DEFAULT_ALARM_ALERT_URI);
  /frameworks/base/core/tests/coretests/src/android/provider/
SettingsProviderTest.java 27 import android.provider.Settings;
39 Settings.Secure.putString(r, "test_service", "Value");
40 assertEquals("Value", Settings.Secure.getString(r, "test_service"));
43 Settings.Secure.putString(r, "test_service", "New");
44 assertEquals("New", Settings.Secure.getString(r, "test_service"));
47 assertEquals(1, r.delete(Settings.Secure.getUriFor("test_service"), null, null));
48 assertEquals(null, Settings.Secure.getString(r, "test_service"));
51 Settings.System.putString(r, "test_setting", "Value");
52 assertEquals("Value", Settings.System.getString(r, "test_setting"));
54 Settings.System.putString(r, "test_setting", "New")
    [all...]
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/stress/
WifiStressTest.java 30 import android.provider.Settings;
222 int value = Settings.System.getInt(mRunner.getContext().getContentResolver(),
223 Settings.System.WIFI_SLEEP_POLICY, -1);
225 Settings.System.putInt(mRunner.getContext().getContentResolver(),
226 Settings.System.WIFI_SLEEP_POLICY, Settings.System.WIFI_SLEEP_POLICY_DEFAULT);
229 Settings.Secure.putLong(mRunner.getContext().getContentResolver(),
230 Settings.Secure.WIFI_IDLE_MS, WIFI_IDLE_MS);
  /frameworks/base/services/tests/servicestests/src/com/android/server/
ThrottleServiceTest.java 41 import android.provider.Settings;
241 * Persist the given {@link ThrottleService} policy into {@link Settings}.
245 Settings.Secure.putLong(resolver, Settings.Secure.THROTTLE_THRESHOLD_BYTES, thresholdBytes);
246 Settings.Secure.putInt(resolver, Settings.Secure.THROTTLE_VALUE_KBITSPS, valueKbitps);
247 Settings.Secure.putInt(resolver, Settings.Secure.THROTTLE_RESET_DAY, resetDay);
251 * Clear any {@link ThrottleService} policy from {@link Settings}.
255 Settings.Secure.putString(resolver, Settings.Secure.THROTTLE_THRESHOLD_BYTES, null)
    [all...]
  /frameworks/base/core/java/com/android/internal/view/
RotationPolicy.java 26 import android.provider.Settings;
45 * Display settings should be hidden, but it should remain available in Accessibility
46 * settings.
57 Settings.System.getInt(context.getContentResolver(),
58 Settings.System.HIDE_ROTATION_LOCK_TOGGLE_FOR_ACCESSIBILITY, 0) == 0;
65 return Settings.System.getInt(context.getContentResolver(),
66 Settings.System.ACCELEROMETER_ROTATION, 0) == 0;
75 Settings.System.putInt(context.getContentResolver(),
76 Settings.System.HIDE_ROTATION_LOCK_TOGGLE_FOR_ACCESSIBILITY, 0);
100 * Should be used by Display settings and Accessibility settings
    [all...]
  /frameworks/base/core/tests/coretests/src/android/webkit/
AccessibilityInjectorTest.java 27 import android.provider.Settings;
    [all...]

Completed in 2004 milliseconds

1 2 3 4 5 6