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

<<11121314151617181920>>

  /sdk/find_java/
find_java.bat 45 echo variable in Control Panel / System / Avanced System Settings to point to the
  /build/target/product/
sdk.mk 44 Settings \
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DevicePickerActivity.java 45 * by the user. When the user selects a paired device, it forwards them to the Bluetooth settings
172 intent.setAction(android.provider.Settings.ACTION_BLUETOOTH_SETTINGS);
  /external/chromium_org/cc/test/
pixel_test.cc 40 virtual const LayerTreeSettings& Settings() const OVERRIDE {
  /external/chromium_org/third_party/WebKit/Source/core/editing/
FrameSelection.h 48 class Settings;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLPlugInImageElement.cpp 32 #include "core/page/Settings.h"
301 Settings* settings = frame->settings(); local
302 if (!settings)
306 if (!settings->isJavaEnabled())
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderEmbeddedObject.cpp 32 #include "core/page/Settings.h"
187 Settings* settings = document()->settings(); local
188 ASSERT(settings);
189 if (!settings)
  /external/chromium_org/tools/gn/
function_exec_script.cc 185 const Settings* settings = scope->settings(); local
186 const BuildSettings* build_settings = settings->build_settings();
ninja_helper.cc 43 OutputFile ret(target->settings()->toolchain_output_subdir());
53 const Settings* settings) const {
55 ret.value().append(settings->toolchain_output_subdir().value());
81 name.append(target->settings()->IsWin() ? "obj" : "o");
119 if (!target->settings()->IsWin() &&
133 target->settings()->target_os());
138 ret.value().append(target->settings()->toolchain_output_subdir().value());
143 (target->settings()->IsMac() &&
146 (target->settings()->IsWin() &
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/core/chrome/
android_browser_backend.py 224 'Settings > Developer tools > Enable USB Web debugging.')
  /frameworks/base/core/java/android/provider/
Contacts.java 99 * Columns from the Settings table that other columns join into themselves.
138 * The settings over all of the people
142 public static final class Settings implements BaseColumns, SettingsColumns {
146 private Settings() {}
154 Uri.parse("content://contacts/settings");
161 public static final String CONTENT_DIRECTORY = "settings";
206 Cursor cursor = cr.query(Settings.CONTENT_URI, new String[]{VALUE},
231 cr.update(Settings.CONTENT_URI, values, null, null);
771 * Whether this group should be synced if the SYNC_EVERYTHING settings is false
    [all...]
  /frameworks/base/core/java/android/view/accessibility/
CaptioningManager.java 26 import android.provider.Settings.Secure;
  /frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/
BassBoostTest.java 247 mBassBoost.setProperties(new BassBoost.Settings(mSettings));
VirtualizerTest.java 244 mVirtualizer.setProperties(new Virtualizer.Settings(mSettings));
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardMessageArea.java 32 import android.provider.Settings;
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherAppState.java 25 import android.provider.Settings;
  /packages/apps/Settings/src/com/android/settings/wifi/
WifiSettings.java 17 package com.android.settings.wifi;
22 import com.android.settings.R;
23 import com.android.settings.RestrictedSettingsFragment;
24 import com.android.settings.wifi.p2p.WifiP2pSettings;
54 import android.provider.Settings;
87 * The first is for "usual Settings", appearing as any other Setup fragment.
746 if (Settings.Global.getInt(getActivity().getContentResolver(),
747 Settings.Global.WIFI_SCAN_ALWAYS_AVAILABLE, 0) == 1) {
750 if (Settings.Secure.isLocationProviderEnabled(getActivity().getContentResolver(),
    [all...]
  /packages/services/Telephony/src/com/android/phone/
RespondViaSmsManager.java 83 /** SharedPreferences file name for our persistent settings. */
86 // Preference keys for the 4 "canned responses"; see RespondViaSmsManager$Settings.
99 * Settings activity under "Call settings" to let you manage the
102 public static class Settings extends PreferenceActivity
107 if (DBG) log("Settings: onCreate()...");
175 // Reset the preferences settings
  /frameworks/base/core/tests/coretests/src/android/content/pm/
PackageManagerTests.java 47 import android.provider.Settings;
48 import android.provider.Settings.SettingNotFoundException;
378 // Check for settings preference.
    [all...]
  /frameworks/base/services/java/com/android/server/wifi/
WifiService.java 55 import android.provider.Settings;
372 final BatchedScanSettings settings; field in class:WifiService.BatchedScanRequest
377 BatchedScanRequest(BatchedScanSettings settings, IBinder binder, WorkSource ws) {
379 this.settings = settings;
385 stopBatchedScan(settings, uid, pid);
388 return "BatchedScanRequest{settings=" + settings + ", binder=" + mBinder + "}";
454 public void stopBatchedScan(BatchedScanSettings settings) {
457 stopBatchedScan(settings, getCallingUid(), getCallingPid())
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java 36 import android.provider.Settings;
546 int mode = Settings.Secure.getInt(getContext().getContentResolver(),
547 Settings.Secure.LOCATION_MODE, Settings.Secure.LOCATION_MODE_OFF);
548 if (mode == Settings.Secure.LOCATION_MODE_OFF) {
831 // Read platform settings for dynamic voicemail number
    [all...]
  /packages/apps/Dialer/src/com/android/dialer/dialpad/
DialpadFragment.java 44 import android.provider.Settings;
694 mDTMFToneEnabled = Settings.System.getInt(contentResolver,
695 Settings.System.DTMF_TONE_WHEN_DIALING, 1) == 1;
    [all...]
  /frameworks/base/services/java/com/android/server/
BackupManagerService.java 75 import android.provider.Settings;
792 boolean areEnabled = Settings.Secure.getInt(resolver,
793 Settings.Secure.BACKUP_ENABLED, 0) != 0;
794 mProvisioned = Settings.Global.getInt(resolver,
795 Settings.Global.DEVICE_PROVISIONED, 0) != 0;
796 mAutoRestore = Settings.Secure.getInt(resolver,
797 Settings.Secure.BACKUP_AUTO_RESTORE, 1) != 0;
801 Settings.Global.getUriFor(Settings.Global.DEVICE_PROVISIONED),
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java 60 import android.provider.Settings;
203 // settings
282 // ensure quick settings is disabled until the current user makes it through the setup wizard
287 final boolean userSetup = 0 != Settings.Secure.getIntForUser(
289 Settings.Secure.USER_SETUP_COMPLETE,
313 mUseHeadsUp = ENABLE_HEADS_UP && 0 != Settings.Global.getInt(
359 Settings.Global.getUriFor(SETTING_HEADS_UP), true,
489 // the settings panel is hiding behind this button
493 // there is a settings panel, but it's on the other side of the (large) screen
501 // no settings panel, go straight to setting
    [all...]
  /frameworks/base/wifi/java/android/net/wifi/p2p/
WifiP2pService.java 62 import android.provider.Settings;
    [all...]

Completed in 891 milliseconds

<<11121314151617181920>>