/frameworks/base/core/java/android/content/ |
D | SharedPreferences.java | 68 public interface Editor { interface 81 Editor putString(String key, String value); in putString() 94 Editor putStringSet(String key, Set<String> values); in putStringSet() 106 Editor putInt(String key, int value); in putInt() 118 Editor putLong(String key, long value); in putLong() 130 Editor putFloat(String key, float value); in putFloat() 142 Editor putBoolean(String key, boolean value); in putBoolean() 158 Editor remove(String key); in remove() 172 Editor clear(); in clear() 354 Editor edit(); in edit()
|
/frameworks/base/core/java/android/app/ |
D | SharedPreferencesImpl.java | 273 public Editor edit() { in edit() 303 public final class EditorImpl implements Editor { 307 public Editor putString(String key, String value) { in putString() 313 public Editor putStringSet(String key, Set<String> values) { in putStringSet() 320 public Editor putInt(String key, int value) { in putInt() 326 public Editor putLong(String key, long value) { in putLong() 332 public Editor putFloat(String key, float value) { in putFloat() 338 public Editor putBoolean(String key, boolean value) { in putBoolean() 345 public Editor remove(String key) { in remove() 352 public Editor clear() { in clear()
|
/frameworks/ex/common/java/com/android/common/ |
D | SharedPreferencesCompat.java | 32 Class cls = SharedPreferences.Editor.class; 39 public static void apply(SharedPreferences.Editor editor) { in apply()
|
D | OperationScheduler.java | 319 SharedPreferences.Editor editor = mStorage.edit(); in onTransientError()
|
/frameworks/base/core/java/android/preference/ |
D | Preference.java | 1039 public SharedPreferences.Editor getEditor() { in getEditor() 1347 private void tryCommit(SharedPreferences.Editor editor) { in tryCommit() 1381 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); in persistString() 1433 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); in persistStringSet() 1482 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); in persistInt() 1526 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); in persistFloat() 1570 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); in persistLong() 1614 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); in persistBoolean()
|
D | PreferenceManager.java | 93 private SharedPreferences.Editor mEditor; 487 SharedPreferences.Editor editor = in setDefaultValues() 508 SharedPreferences.Editor getEditor() { in getEditor()
|
/frameworks/base/docs/html/training/basics/data-storage/ |
D | shared-preferences.jd | 90 android.content.SharedPreferences.Editor} by calling {@link 94 android.content.SharedPreferences.Editor#putInt putInt()} and {@link 95 android.content.SharedPreferences.Editor#putString putString()}. Then call {@link 96 android.content.SharedPreferences.Editor#commit} to save the changes. For example:</p> 100 SharedPreferences.Editor editor = sharedPref.edit();
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/ |
D | Prefs.java | 36 public static SharedPreferences.Editor edit(Context context) { in edit()
|
D | DoNotDisturbController.java | 58 SharedPreferences.Editor editor = Prefs.edit(mContext); in onCheckedChanged()
|
/frameworks/base/packages/WAPPushManager/ |
D | proguard.flags | 6 -keep class android.content.SharedPreferences$Editor {
|
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/ |
D | TestAppWidgetConfigure.java | 46 … SharedPreferences.Editor prefs = getSharedPreferences(TestAppWidgetProvider.PREFS_NAME, 0)
|
D | AppWidgetHostActivity.java | 93 SharedPreferences.Editor prefs = getPreferences(0).edit(); in configureAppWidget()
|
/frameworks/base/docs/html/guide/topics/data/ |
D | data-storage.jd | 98 android.content.SharedPreferences.Editor}.</li> 100 android.content.SharedPreferences.Editor#putBoolean(String,boolean) putBoolean()} and {@link 101 android.content.SharedPreferences.Editor#putString(String,String) putString()}.</li> 102 <li>Commit the new values with {@link android.content.SharedPreferences.Editor#commit()}</li> 133 // We need an Editor object to make preference changes. 136 SharedPreferences.Editor editor = settings.edit();
|
/frameworks/base/docs/html/tools/help/ |
D | adt.jd | 18 <li><a href="#graphical-editor">Graphical Layout Editor</a> 160 <dt><strong>Graphical Layout Editor</strong></dt> 166 Editor</a>.</dd> 168 <dt><strong>Android Manifest Editor</strong></dt> 173 <dt><strong>Menu Editor</strong></dt> 179 <dt><strong>Resources Editor</strong></dt> 184 <dt><strong>XML Resources Editor</strong></dt> 231 <h2 id="graphical-editor">Graphical Layout Editor</h2>
|
/frameworks/base/docs/html/tools/sdk/ |
D | eclipse-adt.jd | 165 <li>Updated XML Editor to respond to refactoring shortcut keys such as <strong>Refactor 167 <li>Updated XML Editor to improve double click handling.</li> 174 <li>Added support for layout aliases in the Layout Editor.</li> 277 <li>Layout Editor 334 <li>Layout Editor 356 <li>Added the ability to specify a default action in Layout Editor views, which you can 594 <li>Layout Editor (<a href="http://tools.android.com/recent/newlayouteditorpropertysheet">more 764 <li>Updated Layout Editor so that it does not assign default ids to layouts, includes and 768 <li>Added ability to export screenshots from the Layout Editor</li> 775 <li>Fixed problem using Layout Editor with {@link android.widget.SlidingDrawer} which could [all …]
|
/frameworks/base/tests/backup/src/com/android/backuptest/ |
D | BackupTestActivity.java | 125 SharedPreferences.Editor editor = prefs.edit();
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/ |
D | GSMPhone.java | 806 SharedPreferences.Editor editor = sp.edit(); in storeVoiceMailNumber() 831 SharedPreferences.Editor editor = sp.edit(); in setVmSimImsi() 1476 SharedPreferences.Editor editor = sp.edit(); in handleSetSelectNetwork() 1494 SharedPreferences.Editor editor = sp.edit(); in saveClirSetting()
|
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/ |
D | CDMALTEPhone.java | 195 SharedPreferences.Editor editor = sp.edit(); in handleSetSelectNetwork()
|
D | CdmaSMSDispatcher.java | 180 SharedPreferences.Editor editor = sp.edit(); in dispatchMessage()
|
/frameworks/base/docs/html/tools/ |
D | index.jd | 40 <li>Editor support for working with custom UI components.</li>
|
/frameworks/base/media/java/android/mtp/ |
D | MtpDatabase.java | 209 SharedPreferences.Editor e = mDeviceProperties.edit(); in initDeviceProperties() 834 SharedPreferences.Editor e = mDeviceProperties.edit(); in setDeviceProperty()
|
/frameworks/base/docs/html/training/efficient-downloads/ |
D | regular_updates.jd | 81 Editor spEdit = sp.edit();
|
/frameworks/base/docs/html/training/improving-layouts/ |
D | optimizing-layout.jd | 146 … whenever you export an APK, edit and save an XML file or use the Layout Editor. To manually force…
|
/frameworks/base/docs/html/training/design-navigation/ |
D | wireframing.jd | 81 <p>Lastly, the XML Layout Editor that comes with the <a href="{@docRoot}tools/help/adt.html">Androi…
|
/frameworks/base/docs/html/distribute/googleplay/promote/ |
D | linking.jd | 147 <tr><td>Editor's Choice</td><td>editors_choice</td></tr>
|