HomeSort by relevance Sort by last modified time
    Searched refs:Settings (Results 276 - 300 of 477) sorted by null

<<11121314151617181920

  /external/webkit/Source/WebCore/platform/win/
SharedTimerWin.cpp 30 #include "Settings.h"
168 if (Settings::shouldUseHighResolutionTimers()) {
  /external/webkit/Source/WebKit/android/plugins/
ANPSystemInterface.cpp 36 #include "Settings.h"
99 WebCore::Settings* settings = pluginWidget->webViewCore()->mainFrame()->settings(); local
100 if (settings && settings->privateBrowsingEnabled()) {
  /external/webkit/Source/WebKit/mac/WebView/
WebFrameInternal.h 37 #import <WebCore/Settings.h>
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
PageClientQt.h 42 #include <Settings.h>
  /external/webkit/Source/WebKit2/WebProcess/WebPage/ca/
LayerTreeHostCA.cpp 37 #include <WebCore/Settings.h>
69 if (m_webPage->corePage()->settings()->acceleratedDrawingEnabled())
188 return m_webPage->corePage()->settings()->showDebugBorders();
193 return m_webPage->corePage()->settings()->showRepaintCounter();
  /frameworks/base/core/java/android/preference/
RingtonePreference.java 24 import android.provider.Settings.System;
  /frameworks/base/core/tests/ConnectivityManagerTest/src/com/android/connectivitymanagertest/functional/
WifiConnectionTest.java 39 import android.provider.Settings;
  /packages/apps/Phone/src/com/android/phone/
CdmaSystemSelectListPreference.java 26 import android.provider.Settings.Secure;
83 //Set the Settings.Secure network mode
129 //changes the Settings.Secure accordingly to statusCdmaRoamingMode
161 //set the Settings.System
CallNotifier.java 42 import android.provider.Settings;
521 boolean provisioned = Settings.Secure.getInt(mApplication.getContentResolver(),
522 Settings.Secure.DEVICE_PROVISIONED, 0) != 0;
579 mRinger.setCustomRingtoneUri(Settings.System.DEFAULT_RINGTONE_URI);
    [all...]
BluetoothHeadsetService.java 42 import android.provider.Settings;
694 int priority = Settings.Secure.getInt(getContentResolver(),
695 Settings.Secure.getBluetoothHeadsetPriorityKey(device.getAddress()),
705 Settings.Secure.putInt(getContentResolver(),
706 Settings.Secure.getBluetoothHeadsetPriorityKey(device.getAddress()),
    [all...]
PhoneApp.java 48 import android.provider.Settings.System;
519 // Read platform settings for TTY feature
581 // Read TTY settings and store it into BP NV.
582 // AP owns (i.e. stores) the TTY setting in AP settings database and pushes the setting
586 mPreferredTtyMode = android.provider.Settings.Secure.getInt(
588 android.provider.Settings.Secure.PREFERRED_TTY_MODE,
592 // Read HAC settings and configure audio hardware
594 int hac = android.provider.Settings.System.getInt(phone.getContext().getContentResolver(),
595 android.provider.Settings.System.HEARING_AID,
    [all...]
  /external/webkit/Source/WebCore/inspector/
DOMNodeHighlighter.cpp 41 #include "Settings.h"
125 void drawElementTitle(GraphicsContext& context, Node* node, const IntRect& boundingBox, const IntRect& anchorBox, const FloatRect& overlayRect, WebCore::Settings* settings)
166 family.setFamily(settings->fixedFontFamily());
287 WebCore::Settings* settings = containingFrame->settings();
288 drawElementTitle(context, node, boundingBox, titleAnchorBox, overlayRect, settings);
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
MediaEqualizerTest.java 234 Equalizer.Settings settings = mEqualizer.getProperties(); local
235 String str = settings.toString();
236 settings = new Equalizer.Settings(str);
237 mEqualizer.setProperties(settings);
MediaPresetReverbTest.java 161 PresetReverb.Settings settings = mReverb.getProperties(); local
163 if (settings.preset == (short)PresetReverb.PRESET_LARGEROOM) {
166 String str = settings.toString();
167 settings = new PresetReverb.Settings(str);
168 settings.preset = newPreset;
169 mReverb.setProperties(settings);
170 settings = mReverb.getProperties();
171 assertEquals(msg +": setProperties failed", newPreset, settings.preset)
    [all...]
  /frameworks/base/core/java/android/app/
DownloadManager.java 31 import android.provider.Settings;
32 import android.provider.Settings.SettingNotFoundException;
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/
WifiStateMachine.java 74 import android.provider.Settings;
284 * - DTIM wake up settings
358 * See {@link Settings.Secure#WIFI_MAX_DHCP_RETRY_COUNT}. This is the default
359 * value if a Settings value is not present.
373 * point on the move. {@link Settings.Secure#WIFI_FRAMEWORK_SCAN_INTERVAL_MS} can
380 * {@link Settings.Secure#WIFI_SUPPLICANT_SCAN_INTERVAL_MS} can override this.
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider2.java 50 import android.provider.BrowserContract.Settings;
99 static final String TABLE_SETTINGS = "settings";
176 static final int SETTINGS = 8000;
228 matcher.addURI(authority, "settings", SETTINGS);
356 // Settings
358 map.put(Settings.KEY, Settings.KEY);
359 map.put(Settings.VALUE, Settings.VALUE)
    [all...]
  /frameworks/base/services/java/com/android/server/net/
NetworkStatsService.java 39 import static android.provider.Settings.Secure.NETSTATS_NETWORK_BUCKET_DURATION;
40 import static android.provider.Settings.Secure.NETSTATS_NETWORK_MAX_HISTORY;
41 import static android.provider.Settings.Secure.NETSTATS_PERSIST_THRESHOLD;
42 import static android.provider.Settings.Secure.NETSTATS_POLL_INTERVAL;
43 import static android.provider.Settings.Secure.NETSTATS_TAG_MAX_HISTORY;
44 import static android.provider.Settings.Secure.NETSTATS_UID_BUCKET_DURATION;
45 import static android.provider.Settings.Secure.NETSTATS_UID_MAX_HISTORY;
87 import android.provider.Settings;
179 * Settings that can be changed externally.
240 NetworkStatsSettings settings) {
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmDataConnectionTracker.java 42 import android.provider.Settings;
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java 38 import android.provider.Settings;
346 * ringtones. Concatenate the name of the setting from Settings
439 + Settings.System.RINGTONE);
441 + Settings.System.NOTIFICATION_SOUND);
443 + Settings.System.ALARM_ALERT);
    [all...]
  /frameworks/base/services/java/com/android/server/
SystemServer.java 37 import android.provider.Settings;
239 int airplaneModeOn = Settings.System.getInt(mContentResolver,
240 Settings.System.AIRPLANE_MODE_ON, 0);
241 int bluetoothOn = Settings.Secure.getInt(mContentResolver,
242 Settings.Secure.BLUETOOTH_ON, 0);
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioManagerTest.java 38 import static android.provider.Settings.System.SOUND_EFFECTS_ENABLED;
51 import android.provider.Settings;
119 Settings.System.putInt(mContext.getContentResolver(), SOUND_EFFECTS_ENABLED, 1);
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/platform/
ContactManager.java 39 import android.provider.ContactsContract.Settings;
433 * need to mess with the Settings table to get them to show up.
444 values.put(Settings.UNGROUPED_VISIBLE, visible ? 1 : 0);
446 context.getContentResolver().insert(Settings.CONTENT_URI, values);
    [all...]
  /external/webkit/Source/WebKit/android/jni/
WebSettings.cpp 49 #include "Settings.h"
319 WebCore::Settings* s = pFrame->settings();
326 WebCore::Settings::LayoutAlgorithm l = (WebCore::Settings::LayoutAlgorithm)
545 // TODO: This updates the Settings WebCore side with the user's
  /frameworks/base/core/java/android/speech/tts/
TextToSpeechService.java 30 import android.provider.Settings;
200 return getSecureSettingInt(Settings.Secure.TTS_DEFAULT_RATE, Engine.DEFAULT_RATE);
209 return Settings.Secure.getInt(getContentResolver(), name, defaultValue);

Completed in 1219 milliseconds

<<11121314151617181920