/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/ |
RecentsPanelView.java | 42 import android.provider.Settings; 742 Intent intent = new Intent(Settings.ACTION_APPLICATION_DETAILS_SETTINGS, [all...] |
/frameworks/base/services/java/com/android/server/am/ |
ActivityManagerService.java | 158 import android.provider.Settings; [all...] |
/packages/apps/Email/src/com/android/email/ |
NotificationController.java | 34 import android.provider.Settings; 132 * to the settings for the given account. 327 String ringtoneUri = Settings.System.DEFAULT_NOTIFICATION_URI.toString(); 345 mContext.getContentResolver().query(uiAccount.settings.defaultInbox, 352 uiAccount.settings.defaultInbox); 371 "Null folder for mailbox %s", uiAccount.settings.defaultInbox); 492 * dialog asking whether he wants to update his settings. 506 * account settings screen where he can view the list of enforced policies 520 * account settings screen where he can view the list of unsupported policies 711 * notification settings [all...] |
/packages/apps/Email/src/com/android/email/activity/setup/ |
AccountSettingsFragment.java | 41 import android.provider.Settings; 64 import com.android.mail.ui.settings.SettingsUtils; 73 * Fragment containing the main logic for account settings. This also calls out to other 74 * fragments for server settings. 260 // if we are coming back from editing incoming or outgoing settings, 267 // Because "delete policy" UI is on edit incoming settings, we have 555 * Loads settings that are dependent on a {@link com.android.mail.providers.Account}, which 566 mUiAccount.settings.defaultInbox, UIProvider.FOLDERS_PROJECTION, null, null, 602 // Should only happen if we've aborted the settings screen [all...] |
/packages/apps/Mms/src/com/android/mms/ui/ |
SlideEditorActivity.java | 31 import android.provider.Settings; 654 if (Settings.System.DEFAULT_RINGTONE_URI.equals(uri)) { [all...] |
/packages/apps/UnifiedEmail/src/com/android/mail/ui/ |
ConversationListFragment.java | 52 import com.android.mail.providers.Settings; 547 (mAccount.settings.convListIcon == ConversationListIcon.SENDER_IMAGE); 837 int swipeSetting = Settings.getSwipeSetting(mAccount.settings); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderLayerCompositor.cpp | 42 #include "core/page/Settings.h" 266 if (Settings* settings = m_renderView->document()->settings()) { 267 hasAcceleratedCompositing = settings->acceleratedCompositingEnabled(); 269 // We allow the chrome to override the settings, in case the page is rendered 279 showRepaintCounter = settings->showRepaintCounter(); 280 forceCompositingMode = settings->forceCompositingMode() && hasAcceleratedCompositing; [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DataUsageSummary.java | 17 package com.android.settings; 48 import static com.android.settings.Utils.prepareCustomPreferencesList; 91 import android.provider.Settings; 131 import com.android.settings.drawable.InsetBoundsDrawable; 132 import com.android.settings.net.ChartData; 133 import com.android.settings.net.ChartDataLoader; 134 import com.android.settings.net.DataUsageMeteredSettings; 135 import com.android.settings.net.NetworkPolicyEditor; 136 import com.android.settings.net.SummaryForAllUidLoader; 137 import com.android.settings.net.UidDetail [all...] |
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/ |
LatinIME.java | 86 import com.android.inputmethod.latin.settings.Settings; 87 import com.android.inputmethod.latin.settings.SettingsActivity; 88 import com.android.inputmethod.latin.settings.SettingsValues; 163 private final Settings mSettings; 521 mSettings = Settings.getInstance(); 531 Settings.init(this); 585 // To load the keyboard we need to load all the settings once, but resetting the 588 // message, then come here to read the settings for the new language before we change 593 // May need to reset the contacts dictionary depending on the user settings [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
ContactsDatabaseHelper.java | 68 import android.provider.ContactsContract.Settings; 135 public static final String SETTINGS = "settings"; 186 // TODO Consolidate settings and accounts 191 + "LEFT OUTER JOIN " + Tables.SETTINGS + " ON (" 206 // TODO Add missing DATA_SET join -- or just consolidate settings and accounts 207 public static final String SETTINGS_JOIN_RAW_CONTACTS_DATA_MIMETYPES_CONTACTS = "settings " 335 " THEN " + Settings.UNGROUPED_VISIBLE + 561 public static final String CONCRETE_ACCOUNT_NAME = Tables.SETTINGS + "." 562 + Settings.ACCOUNT_NAME [all...] |
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/ |
ContactsProvider2Test.java | 63 import android.provider.ContactsContract.Settings; 721 assertProjection(Settings.CONTENT_URI, new String[]{ 722 Settings.ACCOUNT_NAME, 723 Settings.ACCOUNT_TYPE, 724 Settings.DATA_SET, 725 Settings.UNGROUPED_VISIBLE, 726 Settings.SHOULD_SYNC, 727 Settings.ANY_UNSYNCED, 728 Settings.UNGROUPED_COUNT, 729 Settings.UNGROUPED_WITH_PHONES [all...] |
/frameworks/base/core/java/android/inputmethodservice/ |
KeyboardView.java | 34 import android.provider.Settings; [all...] |
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
NetworkController.java | 34 import android.provider.Settings; 506 mAirplaneMode = (Settings.Global.getInt(mContext.getContentResolver(), 507 Settings.Global.AIRPLANE_MODE_ON, 0) == 1); [all...] |
/frameworks/base/services/java/com/android/server/net/ |
NetworkPolicyManagerService.java | 118 import android.provider.Settings; [all...] |
/packages/apps/Music/src/com/android/music/ |
MusicUtils.java | 48 import android.provider.Settings; [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/nls/ |
NotificationListenerVerifierActivity.java | 38 import android.provider.Settings.Secure; 254 new Intent("android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS")); 373 Intent settings = new Intent("android.settings.ACTION_NOTIFICATION_LISTENER_SETTINGS"); local 374 if (settings.resolveActivity(mPackageManager) == null) { 375 logWithStack("failed testIsEnabled: no settings activity");
|
/development/samples/Home/src/com/example/android/home/ |
Home.java | 452 .setIntent(new Intent(android.provider.Settings.ACTION_SETTINGS));
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
V8Binding.cpp | 54 #include "core/page/Settings.h" 524 if (Settings* settings = frame->settings()) 525 settings->setScriptEnabled(false);
|
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
TextCheckingHelper.cpp | 39 #include "core/page/Settings.h" 574 const Settings* settings = frame->settings(); local 575 if (!settings) 578 return settings->unifiedTextCheckerEnabled();
|
/external/chromium_org/third_party/WebKit/Source/core/html/parser/ |
XSSAuditor.cpp | 42 #include "core/page/Settings.h" 235 if (Settings* settings = frame->settings()) 236 m_isEnabled = settings->xssAuditorEnabled();
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
Frame.cpp | 54 #include "core/page/Settings.h" 220 Settings* Frame::settings() const function in class:WebCore::Frame 222 return m_page ? m_page->settings() : 0;
|
Page.cpp | 49 #include "core/page/Settings.h" 103 , m_settings(Settings::create(this))
|
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
ScrollingCoordinator.cpp | 37 #include "core/page/Settings.h" 106 Settings* settings = m_page->mainFrame()->document()->settings(); local 107 return RuntimeEnabledFeatures::touchEnabled() && settings->compositorTouchHitTesting() && contentRenderer && contentRenderer->usesCompositing();
|
/external/chromium_org/tools/gn/ |
ninja_target_writer.cc | 68 : settings_(target->settings()), 81 if (target_->settings()->IsWin()) 103 const Settings* settings = target->settings(); local 104 NinjaHelper helper(settings->build_settings()); 106 base::FilePath ninja_file(settings->build_settings()->GetFullPath( 108 settings->build_settings())));
|
/external/mdnsresponder/mDNSShared/ |
DebugServices.h | 36 #pragma mark == Settings == 40 // Settings [all...] |