HomeSort by relevance Sort by last modified time
    Searched refs:Settings (Results 176 - 200 of 306) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/WebKit/mac/WebView/
WebFrameInternal.h 37 #import <WebCore/Settings.h>
  /frameworks/base/core/java/android/preference/
RingtonePreference.java 24 import android.provider.Settings.System;
  /frameworks/base/telephony/java/com/android/internal/telephony/
PhoneBase.java 32 import android.provider.Settings;
572 Settings.Secure.getInt(mContext.getContentResolver(),
573 Settings.Secure.WIFI_NUM_ALLOWED_CHANNELS);
574 } catch (Settings.SettingNotFoundException e) {
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CdmaRoamingListPreference.java 26 import android.provider.Settings.Secure;
84 //Set the Settings.Secure network mode
130 //changes the Settings.Secure accordingly to statusCdmaRoamingMode
162 //set the Settings.System
CallNotifier.java 41 import android.provider.Settings;
381 boolean provisioned = Settings.Secure.getInt(mPhone.getContext().getContentResolver(),
382 Settings.Secure.DEVICE_PROVISIONED, 0) != 0;
493 mRinger.setCustomRingtoneUri(Settings.System.DEFAULT_RINGTONE_URI);
682 mIsEmergencyToneOn = Settings.System.getInt(
684 Settings.System.EMERGENCY_TONE, EMERGENCY_TONE_OFF);
    [all...]
BluetoothHeadsetService.java 39 import android.provider.Settings;
712 int priority = Settings.Secure.getInt(getContentResolver(),
713 Settings.Secure.getBluetoothHeadsetPriorityKey(device.getAddress()),
734 Settings.Secure.putInt(getContentResolver(),
735 Settings.Secure.getBluetoothHeadsetPriorityKey(device.getAddress()),
    [all...]
PhoneApp.java 47 import android.provider.Settings.System;
468 // Read platform settings for TTY feature
548 // Read TTY settings and store it into BP NV.
549 // AP owns (i.e. stores) the TTY setting in AP settings database and pushes the setting
553 mPreferredTtyMode = android.provider.Settings.Secure.getInt(
555 android.provider.Settings.Secure.PREFERRED_TTY_MODE,
559 // Read HAC settings and configure audio hardware
561 int hac = android.provider.Settings.System.getInt(phone.getContext().getContentResolver(),
562 android.provider.Settings.System.HEARING_AID,
    [all...]
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiApSettings.java 17 package com.android.settings.wifi;
19 import com.android.settings.R;
31 import android.provider.Settings;
  /external/webkit/WebCore/inspector/
InspectorController.h 347 typedef HashMap<String, String> Settings;
348 mutable Settings m_settings;
  /packages/apps/Browser/src/com/android/browser/
BrowserProvider.java 44 import android.provider.Settings;
144 // 4 -> 5 add settings table
148 // 8 -> 9 drop settings table
179 c = cr.query(Uri.parse("content://com.google.settings/partner"),
373 Settings.System.getUriFor(
374 Settings.System.SHOW_WEB_SUGGESTIONS),
405 * Check the system settings to see whether web suggestions are
412 if (Settings.System.getInt(context.getContentResolver(),
413 Settings.System.SHOW_WEB_SUGGESTIONS,
    [all...]
  /external/webkit/WebKit/qt/Api/
qwebsettings.cpp 32 #include "Settings.h"
63 QWebSettingsPrivate(WebCore::Settings* wcSettings = 0)
64 : settings(wcSettings)
78 WebCore::Settings* settings; member in class:QWebSettingsPrivate
103 if (settings) {
104 settings->setTextAreasAreResizable(true);
110 settings->setStandardFontFamily(family);
114 settings->setFixedFontFamily(family);
118 settings->setSerifFontFamily(family)
224 QList<QWebSettingsPrivate*> settings = *::allSettings(); local
    [all...]
  /frameworks/base/media/java/android/media/
AudioManager.java 31 import android.provider.Settings;
364 * management of audio settings or the main telephony application.
392 * management of audio settings or the main telephony application.
416 * management of audio settings or the main telephony application.
494 * according to user settings.
569 * management of audio settings or the main telephony application.
585 * settings and the current ringer mode.
639 * management of audio settings or the main telephony application.
664 * management of audio settings or the main telephony application.
807 * management of audio settings or the main telephony application
    [all...]
  /frameworks/policies/base/phone/com/android/internal/policy/impl/
LockScreen.java 39 import android.provider.Settings;
165 * @param lockPatternUtils Used to know the state of the lock pattern settings.
300 final boolean vibe = (Settings.System.getInt(
302 Settings.System.VIBRATE_IN_SILENT, 1) == 1);
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarms.java 31 import android.provider.Settings;
38 * The Alarms provider supplies info about Alarm Clock settings
338 * the user changes alarm settings. Activates snooze if set,
556 * settings so those who care can make use of it.
559 Settings.System.putString(context.getContentResolver(),
560 Settings.System.NEXT_ALARM_FORMATTED,
  /frameworks/base/core/java/android/provider/
Settings.java 57 * The Settings provider contains global system-level device preferences.
59 public final class Settings {
61 // Intent actions for Settings
64 * Activity Action: Show system settings.
71 public static final String ACTION_SETTINGS = "android.settings.SETTINGS";
74 * Activity Action: Show settings to allow configuration of APNs.
81 public static final String ACTION_APN_SETTINGS = "android.settings.APN_SETTINGS";
84 * Activity Action: Show settings to allow configuration of current location
96 "android.settings.LOCATION_SOURCE_SETTINGS"
    [all...]
  /development/apps/Development/src/com/android/development/
SyncAdapterDriver.java 45 import android.provider.Settings;
306 this, 0, new Intent(Settings.ACTION_SYNC_SETTINGS), 0));
  /external/webkit/WebCore/css/
CSSFontSelector.cpp 49 #include "Settings.h"
246 Settings* settings = m_document ? m_document->frame() ? m_document->frame()->settings() : 0 : 0; local
247 bool allowDownloading = foundSVGFont || (settings && settings->downloadableBinaryFontsEnabled());
378 const Settings* settings = document->frame()->settings(); local
379 if (!settings)
    [all...]
  /external/webkit/WebCore/loader/
DocLoader.cpp 46 #include "Settings.h"
128 Settings* settings = f->settings(); local
129 if (!f->loader()->client()->allowImages(!settings || settings->areImagesEnabled()))
286 Settings* settings = frame()->settings();
287 if (!settings || settings->privateBrowsingEnabled()
    [all...]
CachedImage.cpp 36 #include "Settings.h"
266 Settings* settings = frame->settings();
267 return settings ? settings->maximumDecodedImageSize() : 0;
  /external/webkit/WebKit/mac/History/
WebBackForwardList.mm 45 #import <WebCore/Settings.h>
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 66 import android.provider.Settings;
170 // for Settings change notification
519 // listen for settings changes
521 Cursor settingsCursor = resolver.query(Settings.Secure.CONTENT_URI, null,
522 "(" + Settings.System.NAME + "=?)",
523 new String[]{Settings.Secure.LOCATION_PROVIDERS_ALLOWED},
525 mSettings = new ContentQueryMap(settingsCursor, Settings.System.NAME, true, mLocationHandler);
546 // Use system settings
549 return Settings.Secure.isLocationProviderEnabled(resolver, provider);
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
SoftKeyboardView.java 379 if (!Settings.getVibrate()) {
389 if (Settings.getKeySound()) {
  /external/webkit/WebCore/html/
HTMLEmbedElement.cpp 39 #include "Settings.h"
141 if (Settings* settings = frame->settings()) {
142 if (settings->usesDashboardBackwardCompatibilityMode())
HTMLTableCellElement.cpp 37 #include "Settings.h"
106 if (!(document()->frame()) || document()->frame()->settings()->layoutAlgorithm() != Settings::kLayoutSSR)
  /external/webkit/WebCore/page/
Frame.h 124 Settings* settings() const; // can be NULL

Completed in 651 milliseconds

1 2 3 4 5 6 78 91011>>