/external/webkit/WebCore/inspector/ |
InspectorController.h | 347 typedef HashMap<String, String> Settings; 348 mutable Settings m_settings;
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/ |
MediaEqualizerTest.java | 228 Equalizer.Settings settings = mEqualizer.getProperties(); local 229 String str = settings.toString(); 230 settings = new Equalizer.Settings(str); 231 mEqualizer.setProperties(settings);
|
MediaPresetReverbTest.java | 152 PresetReverb.Settings settings = mReverb.getProperties(); local 154 if (settings.preset == (short)PresetReverb.PRESET_LARGEROOM) { 157 String str = settings.toString(); 158 settings = new PresetReverb.Settings(str); 159 settings.preset = newPreset; 160 mReverb.setProperties(settings); 161 settings = mReverb.getProperties(); 162 assertEquals(msg +": setProperties failed", newPreset, settings.preset) [all...] |
MediaEnvReverbTest.java | 305 EnvironmentalReverb.Settings settings = mReverb.getProperties(); local 307 if (settings.roomLevel == 0) { 310 String str = settings.toString(); 311 settings = new EnvironmentalReverb.Settings(str); 312 settings.roomLevel = newRoomLevel; 313 mReverb.setProperties(settings); 314 settings = mReverb.getProperties(); 316 (settings.roomLevel > (newRoomLevel - MILLIBEL_TOLERANCE)) & [all...] |
/packages/apps/Phone/src/com/android/phone/ |
CallNotifier.java | 44 import android.provider.Settings; 368 boolean provisioned = Settings.Secure.getInt(mApplication.getContentResolver(), 369 Settings.Secure.DEVICE_PROVISIONED, 0) != 0; 504 mRinger.setCustomRingtoneUri(Settings.System.DEFAULT_RINGTONE_URI); [all...] |
BluetoothHeadsetService.java | 41 import android.provider.Settings; 679 int priority = Settings.Secure.getInt(getContentResolver(), 680 Settings.Secure.getBluetoothHeadsetPriorityKey(device.getAddress()), 696 Settings.Secure.putInt(getContentResolver(), 697 Settings.Secure.getBluetoothHeadsetPriorityKey(device.getAddress()), [all...] |
PhoneApp.java | 47 import android.provider.Settings.System; 485 // Read platform settings for TTY feature 549 // Read TTY settings and store it into BP NV. 550 // AP owns (i.e. stores) the TTY setting in AP settings database and pushes the setting 554 mPreferredTtyMode = android.provider.Settings.Secure.getInt( 556 android.provider.Settings.Secure.PREFERRED_TTY_MODE, 560 // Read HAC settings and configure audio hardware 562 int hac = android.provider.Settings.System.getInt(phone.getContext().getContentResolver(), 563 android.provider.Settings.System.HEARING_AID, [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/ |
StatusBarPolicy.java | 48 import android.provider.Settings; 647 if (Settings.System.getInt(cr, 648 Settings.System.POWER_SOUNDS_ENABLED, 1) == 1) 650 final String soundPath = Settings.System.getString(cr, 651 Settings.System.LOW_BATTERY_SOUND); [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/base/policy/src/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,
|
/packages/apps/Settings/src/com/android/settings/applications/ |
RunningServiceDetails.java | 1 package com.android.settings.applications; 3 import com.android.settings.R; 26 import android.provider.Settings; 269 // check if error reporting is enabled in secure settings 270 int enabled = Settings.Secure.getInt(getContentResolver(), 271 Settings.Secure.SEND_ACTION_APP_ERROR, 0);
|
/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>
|
/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
|
Navigator.cpp | 42 #include "Settings.h" 91 Settings* settings = frame->settings(); 92 if (!settings) 94 return settings->needsSiteSpecificQuirks(); 152 if (!m_frame || !m_frame->settings()) 155 return m_frame->settings()->isJavaEnabled();
|
/external/webkit/WebCore/platform/win/ |
ScrollbarThemeSafari.cpp | 38 #include "Settings.h" 62 if (Settings::shouldPaintNativeControls())
|