/packages/apps/UnifiedEmail/src/com/android/mail/preferences/ |
D | MailPrefs.java | 228 createWidgetPreferenceValue(account, folderUri)).apply(); in configureWidget() 246 getEditor().apply(); in clearWidgets() 255 getEditor().putBoolean(PreferenceKeys.DEFAULT_REPLY_ALL, replyAll).apply(); in setDefaultReplyAll() 283 getEditor().putString(PreferenceKeys.REMOVAL_ACTION, removalAction).apply(); in setRemovalAction() 296 getEditor().putBoolean(PreferenceKeys.CONVERSATION_LIST_SWIPE, enabled).apply(); in setConversationListSwipeEnabled() 331 .apply(); in cacheActiveNotificationSet() 346 getEditor().putBoolean(PreferenceKeys.CONVERSATION_PHOTO_TEASER_SHOWN, true).apply(); in setConversationPhotoTeaserAlreadyShown() 360 getEditor().putInt(PreferenceKeys.LONG_PRESS_TO_SELECT_TIP_SHOWN, 1).apply(); in setLongPressToSelectTipAlreadyShown() 365 getEditor().putStringSet(PreferenceKeys.DISPLAY_IMAGES, addresses).apply(); in setSenderWhitelist() 369 getEditor().putStringSet(PreferenceKeys.DISPLAY_IMAGES_PATTERNS, patterns).apply(); in setSenderWhitelistPatterns() [all …]
|
D | AccountPreferences.java | 106 getEditor().putBoolean(PreferenceKeys.DEFAULT_INBOX_NOTIFICATIONS_ENABLED, enabled).apply(); in setDefaultInboxNotificationsEnabled() 110 getEditor().remove(PreferenceKeys.DEFAULT_INBOX_NOTIFICATIONS_ENABLED).apply(); in clearDefaultInboxNotificationsEnabled() 118 getEditor().putBoolean(PreferenceKeys.NOTIFICATIONS_ENABLED, enabled).apply(); in setNotificationsEnabled() 130 getEditor().putInt(PreferenceKeys.ACCOUNT_SYNC_OFF_DISMISSES, 0).apply(); in resetNumOfDismissesForAccountSyncOff() 137 getEditor().putInt(PreferenceKeys.ACCOUNT_SYNC_OFF_DISMISSES, value + 1).apply(); in incNumOfDismissesForAccountSyncOff() 145 getEditor().putInt(PreferenceKeys.LAST_SEEN_OUTBOX_COUNT, count).apply(); in setLastSeenOutboxCount()
|
/packages/apps/Camera2/src/com/android/camera/async/ |
D | Futures2.java | 37 ListenableFuture<TResult> apply(T1 value1, T2 value2) throws Exception; in apply() method 44 ListenableFuture<TResult> apply(T1 value1, T2 value2, T3 value3) throws Exception; in apply() method 51 TResult apply(T1 value1, T2 value2); in apply() method 58 TResult apply(T1 value1, T2 value2, T3 value3); in apply() method 101 public ListenableFuture<TResult> apply(@Nullable List<Object> list) throws Exception { 105 return fn.apply(value1, value2); 146 public ListenableFuture<TResult> apply(@Nullable List<Object> list) throws Exception { 151 return fn.apply(value1, value2, value3); 183 public ListenableFuture<TResult> apply(T1 value1, T2 value2) throws Exception { 184 return Futures.immediateFuture(mFn.apply(value1, value2)); [all …]
|
/packages/apps/TV/src/com/android/tv/util/ |
D | TvSettings.java | 122 PREF_PIP_LAYOUT, pipLayout).apply(); in setPipLayout() 146 PREF_PIP_SIZE, pipSize).apply(); in setPipSize() 157 PREF_MULTI_AUDIO_ID, language).apply(); in setMultiAudioId() 167 PREF_MULTI_AUDIO_LANGUAGE, language).apply(); in setMultiAudioLanguage() 177 PREF_MULTI_AUDIO_CHANNEL_COUNT, channelCount).apply(); in setMultiAudioChannelCount() 185 .putStringSet(PREF_CONTENT_RATING_SYSTEMS, contentRatingSystemSet).apply(); in addContentRatingSystems() 193 .putStringSet(PREF_CONTENT_RATING_SYSTEMS, contentRatingSystemSet).apply(); in addContentRatingSystem() 201 .putStringSet(PREF_CONTENT_RATING_SYSTEMS, contentRatingSystemSet).apply(); in removeContentRatingSystems() 209 .putStringSet(PREF_CONTENT_RATING_SYSTEMS, contentRatingSystemSet).apply(); in removeContentRatingSystem() 241 PREF_CONTENT_RATING_LEVEL, level).apply(); in setContentRatingLevel() [all …]
|
D | SetupUtils.java | 204 .putStringSet(PREF_KEY_RECOGNIZED_INPUTS, mRecognizedInputs).apply(); in markAsKnownInput() 246 .apply(); in markAllInputsRecognized() 323 mSharedPreferences.edit().putBoolean(PREF_KEY_IS_FIRST_TUNE, false).apply(); in onTuned() 348 .putStringSet(PREF_KEY_RECOGNIZED_INPUTS, mRecognizedInputs).apply(); in onInputListUpdated() 363 .apply(); in onSetupDone() 368 mSharedPreferences.edit().putStringSet(PREF_KEY_KNOWN_INPUTS, mKnownInputs).apply(); in onSetupDone() 372 mSharedPreferences.edit().putStringSet(PREF_KEY_SET_UP_INPUTS, mSetUpInputs).apply(); in onSetupDone()
|
/packages/apps/Email/provider_src/com/android/email/ |
D | Preferences.java | 117 getPreferences(context).mSharedPreferences.edit().remove(ACCOUNT_UUIDS).apply(); in clearLegacyBackupPreference() 121 mSharedPreferences.edit().putBoolean(ENABLE_DEBUG_LOGGING, value).apply(); in setEnableDebugLogging() 129 mSharedPreferences.edit().putBoolean(ENABLE_EXCHANGE_LOGGING, value).apply(); in setEnableExchangeLogging() 137 mSharedPreferences.edit().putBoolean(ENABLE_EXCHANGE_FILE_LOGGING, value).apply(); in setEnableExchangeFileLogging() 145 mSharedPreferences.edit().putBoolean(ENABLE_STRICT_MODE, value).apply(); in setEnableStrictMode() 161 mSharedPreferences.edit().putString(DEVICE_UID, result).apply(); in getDeviceUID() 171 mSharedPreferences.edit().putInt(ONE_TIME_INITIALIZATION_PROGRESS, progress).apply(); in setOneTimeInitializationProgress() 266 .apply(); in setLastUsedAccountId() 270 mSharedPreferences.edit().clear().apply(); in clear()
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
D | SearchSettingsImpl.java | 99 SharedPreferencesCompat.apply(getSearchPreferences().edit().putBoolean(name, value)); in storeBoolean() 103 SharedPreferencesCompat.apply(getSearchPreferences().edit().putInt(name, value)); in storeInt() 107 SharedPreferencesCompat.apply(getSearchPreferences().edit().putLong(name, value)); in storeLong() 111 SharedPreferencesCompat.apply(getSearchPreferences().edit().putString(name, value)); in storeString() 115 SharedPreferencesCompat.apply(getSearchPreferences().edit().remove(name)); in removePref() 157 SharedPreferencesCompat.apply(prefs.edit() in haveVoiceSearchHintsExpired() 210 SharedPreferencesCompat.apply(sharedPrefEditor); in setSearchBaseDomain()
|
/packages/services/Telecomm/tests/src/com/android/server/telecom/tests/ |
D | VideoProviderTest.java | 166 public boolean apply(Void v) { in testSetPreviewSurface() 175 public boolean apply(Void v) { in testSetPreviewSurface() 191 public boolean apply(Void v) { in testSetDisplaySurface() 200 public boolean apply(Void v) { in testSetDisplaySurface() 215 public boolean apply(Void v) { in testSetDeviceOrientation() 224 public boolean apply(Void v) { in testSetDeviceOrientation() 238 public boolean apply(Void v) { in testSetZoom() 298 public boolean apply(Void v) { in testSessionModifyResponse() 334 public boolean apply(Void v) { in testSetPauseImage()
|
/packages/apps/Messaging/src/com/android/messaging/util/ |
D | BuglePrefsImpl.java | 87 editor.apply(); in putInt() 97 editor.apply(); in putLong() 107 editor.apply(); in putBoolean() 117 editor.apply(); in putString() 133 editor.apply(); in remove()
|
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/ |
D | Settings.java | 270 editor.apply(); in readShowsLanguageSwitchKey() 284 prefs.edit().putString(PREF_CUSTOM_INPUT_STYLES, prefSubtypes).apply(); in writePrefAdditionalSubtypes() 383 mPrefs.edit().remove(PREF_LAST_USED_PERSONALIZATION_TOKEN).apply(); in writeLastUsedPersonalizationToken() 386 mPrefs.edit().putString(PREF_LAST_USED_PERSONALIZATION_TOKEN, tokenStr).apply(); in writeLastUsedPersonalizationToken() 396 mPrefs.edit().putLong(PREF_LAST_PERSONALIZATION_DICT_WIPED_TIME, timestamp).apply(); in writeLastPersonalizationDictWipedTime() 404 mPrefs.edit().putStringSet(PREF_CORPUS_HANDLES_FOR_PERSONALIZATION, corpusHandles).apply(); in writeCorpusHandlesForPersonalization() 413 prefs.edit().putString(PREF_EMOJI_RECENT_KEYS, str).apply(); in writeEmojiRecentKeys() 423 prefs.edit().putInt(key, categoryPageId).apply(); in writeLastTypedEmojiCategoryPageId() 434 prefs.edit().putInt(PREF_LAST_SHOWN_EMOJI_CATEGORY_ID, categoryId).apply(); in writeLastShownEmojiCategoryId()
|
D | AdvancedSettingsFragment.java | 137 prefs.edit().putInt(key, value).apply(); in setupKeypressVibrationDurationSettings() 142 prefs.edit().remove(key).apply(); in setupKeypressVibrationDurationSettings() 192 prefs.edit().putFloat(key, getValueFromPercentage(value)).apply(); in setupKeypressSoundVolumeSettings() 197 prefs.edit().remove(key).apply(); in setupKeypressSoundVolumeSettings() 237 prefs.edit().putInt(key, value).apply(); in setupKeyLongpressTimeoutSettings() 242 prefs.edit().remove(key).apply(); in setupKeyLongpressTimeoutSettings()
|
D | DebugSettingsFragment.java | 173 prefs.edit().putFloat(key, getValueFromPercentage(value)).apply(); in setupKeyPreviewAnimationScale() 178 prefs.edit().remove(key).apply(); in setupKeyPreviewAnimationScale() 215 prefs.edit().putInt(key, value).apply(); in setupKeyPreviewAnimationDuration() 220 prefs.edit().remove(key).apply(); in setupKeyPreviewAnimationDuration() 261 prefs.edit().putFloat(key, getValueFromPercentage(value)).apply(); in setupKeyboardHeight() 266 prefs.edit().remove(key).apply(); in setupKeyboardHeight()
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
D | LocalBluetoothPreferences.java | 141 editor.apply(); in persistSelectedDeviceInPicker() 147 editor.apply(); in persistDiscoverableEndTimestamp() 159 editor.apply(); in persistDiscoveringTimestamp() 176 editor.apply(); in saveDockAutoConnectSetting() 182 editor.apply(); in removeDockAutoConnectSetting()
|
D | DockService.java | 219 prefs.edit().putInt(KEY_CONNECT_RETRY_COUNT, retryCount + 1).apply(); in onStartCommand() 229 prefs.edit().putInt(KEY_CONNECT_RETRY_COUNT, retryCount + 1).apply(); in onStartCommand() 244 prefs.edit().remove(KEY_CONNECT_RETRY_COUNT).apply(); in onStartCommand() 317 prefs.edit().remove(KEY_DISABLE_BT_WHEN_UNDOCKED).apply(); in msgTypeDisableBluetooth() 321 prefs.edit().putBoolean(KEY_DISABLE_BT, true).apply(); in msgTypeDisableBluetooth() 352 prefs.edit().remove(KEY_DISABLE_BT_WHEN_UNDOCKED).apply(); in msgTypeUndockedPermanent() 383 getPrefs().edit().remove(KEY_DISABLE_BT).apply(); in msgTypeDocked() 704 getPrefs().edit().remove(KEY_DISABLE_BT_WHEN_UNDOCKED).apply(); in handleBtStateChange() 713 getPrefs().edit().remove(KEY_DISABLE_BT).apply(); in handleBtStateChange() 761 prefs.edit().remove(KEY_DISABLE_BT).apply(); in handleBluetoothStateOn() [all …]
|
/packages/apps/Launcher3/src/com/android/launcher3/util/ |
D | FlagOp.java | 9 public int apply(int flags) { in apply() method in FlagOp 16 public int apply(int flags) { in addFlag() 25 public int apply(int flags) {
|
D | ManagedProfileHeuristic.java | 132 mPrefs.edit().putStringSet(mPackageSetKey, packageSet).apply(); in processUserApps() 210 mPrefs.edit().putLong(USER_FOLDER_ID_PREFIX + mUserSerial, workFolder.id).apply(); in finalizeWorkFolder() 264 mPrefs.edit().putStringSet(mPackageSetKey, packageSet).apply(); in processPackageAdd() 284 mPrefs.edit().putStringSet(mPackageSetKey, packageSet).apply(); in processPackageRemoved() 324 editor.apply(); in processAllUsers() 353 prefs.edit().putLong(folderIdKey, ItemInfo.NO_ID).apply(); in markExistingUsersForNoFolderCreation()
|
/packages/apps/Camera2/src/com/android/camera/settings/ |
D | AppUpgrader.java | 111 defaultPreferences.edit().remove(OLD_KEY_UPGRADE_VERSION).apply(); in getLastVersion() 361 newPrefs.edit().remove(key).apply(); in copyPreferences() 364 newPrefs.edit().putString(key, boolValue).apply(); in copyPreferences() 367 newPrefs.edit().putString(key, intValue).apply(); in copyPreferences() 375 newPrefs.edit().putString(key, intValue).apply(); in copyPreferences() 381 newPrefs.edit().putString(key, (String) value).apply(); in copyPreferences() 385 newPrefs.edit().remove(key).apply(); in copyPreferences()
|
D | SettingsUpgrader.java | 97 oldPreferencesLocation.edit().remove(key).apply(); in removeBoolean() 116 oldPreferencesLocation.edit().remove(key).apply(); in removeInteger() 135 oldPreferencesLocation.edit().remove(key).apply(); in removeString()
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/ |
D | ParametricEditor.java | 113 String apply = ""; in calculateUserMessage() local 118 apply += " " + effectName.toUpperCase() + " " + interval.getStateRepresentation(); in calculateUserMessage() 120 apply += " " + effectName.toUpperCase() + " " + parameterValue; in calculateUserMessage() 123 apply += " " + effectName.toUpperCase(); in calculateUserMessage() 125 return apply; in calculateUserMessage()
|
D | EditorStraighten.java | 42 String apply = context.getString(R.string.apply_effect); in calculateUserMessage() local 43 apply += " " + effectName; in calculateUserMessage() 44 return apply.toUpperCase(); in calculateUserMessage()
|
/packages/apps/Settings/src/com/android/settings/widget/ |
D | ChartView.java | 118 Gravity.apply(params.gravity, width, height, parentRect, childRect); in onLayout() 123 Gravity.apply(params.gravity, width, height, parentRect, childRect); in onLayout() 151 Gravity.apply(SWEEP_GRAVITY, parentRect.width(), sweep.getMeasuredHeight(), in layoutSweep() 159 Gravity.apply(SWEEP_GRAVITY, sweep.getMeasuredWidth(), parentRect.height(), in layoutSweep()
|
/packages/apps/TV/usbtuner/src/com/android/usbtuner/ |
D | UsbTunerPreferences.java | 67 .apply(); in setChannelDataVersion() 86 .apply(); in setScannedChannelCount() 105 .apply(); in setScanDone() 124 .apply(); in setShouldShowSetupActivity()
|
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/ |
D | CellBroadcastReceiver.java | 157 .apply(); in tryCdmaSetCategory() 163 .apply(); in tryCdmaSetCategory() 168 CellBroadcastSettings.KEY_ENABLE_CMAS_AMBER_ALERTS, enable).apply(); in tryCdmaSetCategory() 173 CellBroadcastSettings.KEY_ENABLE_CMAS_TEST_ALERTS, enable).apply(); in tryCdmaSetCategory()
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
D | ContactEditorUtils.java | 86 .remove(mAnythingSavedKey).apply(); in cleanupForTest() 91 mPrefs.edit().remove(mDefaultAccountKey).apply(); in removeDefaultAccountForTest() 99 mPrefs.edit().putString(KEY_KNOWN_ACCOUNTS, "").putString(mDefaultAccountKey, "").apply(); in resetPreferenceValues() 140 editor.apply(); in saveDefaultAndAllAccounts()
|
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/ |
D | ImportantNoticeUtilsTests.java | 70 mPref.edit().putInt(key, value).apply(); in putInt() 78 mPref.edit().putLong(key, value).apply(); in putLong() 83 mPref.edit().remove(key).apply(); in removePreference()
|