HomeSort by relevance Sort by last modified time
    Searched refs:Editor (Results 76 - 100 of 232) sorted by null

1 2 34 5 6 7 8 910

  /frameworks/base/core/java/android/preference/
Preference.java 1381 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1433 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1482 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1526 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1570 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1614 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
    [all...]
PreferenceManager.java 90 * If in no-commit mode, the shared editor to give out (which will be
93 private SharedPreferences.Editor mEditor;
96 * Blocks commits from happening on the shared editor. This is used when
487 SharedPreferences.Editor editor = local
490 editor.apply();
493 // SharedPreferences.Editor implementation without
495 editor.commit();
501 * Returns an editor to use when modifying the shared preferences.
505 * @return An editor to use to write to shared preferences
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/quickcontact/
QuickContactTestsActivity.java 22 import android.content.SharedPreferences.Editor;
102 final Editor editor = sharedPreferences.edit(); local
103 editor.putString(PREF_SETTING_URI, mContactUri == null ? null : mContactUri.toString());
104 editor.apply();
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
MagicSmokeSelector.java 32 import android.content.SharedPreferences.Editor;
138 Editor edit = mSharedPref.edit();
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DateTimeEditor.java 17 package com.android.notificationstudio.editor;
35 import com.android.notificationstudio.editor.Editors.Editor;
41 public class DateTimeEditor implements Editor {
IconEditor.java 17 package com.android.notificationstudio.editor;
32 import com.android.notificationstudio.editor.Editors.Editor;
35 public class IconEditor implements Editor {
  /external/replicaisland/src/com/replica/replicaisland/
SetPreferencesActivity.java 63 SharedPreferences.Editor editor = prefs.edit(); local
64 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_ROW);
65 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_INDEX);
66 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_COMPLETED);
67 editor.remove(PreferenceConstants.PREFERENCE_LINEAR_MODE);
68 editor.remove(PreferenceConstants.PREFERENCE_TOTAL_GAME_TIME);
69 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_COLLECTED);
70 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_TOTAL);
71 editor.remove(PreferenceConstants.PREFERENCE_ROBOTS_DESTROYED)
    [all...]
MainMenuActivity.java 221 SharedPreferences.Editor editor = prefs.edit(); local
222 editor.putBoolean(PreferenceConstants.PREFERENCE_CLICK_ATTACK, false);
223 editor.commit();
226 SharedPreferences.Editor editor = prefs.edit(); local
231 editor.putBoolean(PreferenceConstants.PREFERENCE_SCREEN_CONTROLS, true);
235 editor.putBoolean(PreferenceConstants.PREFERENCE_TILT_CONTROLS, true);
238 editor.commit();
260 SharedPreferences.Editor editor = prefs.edit() local
265 SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
Cities.java 33 SharedPreferences.Editor editor = prefs.edit(); local
34 editor.putInt(NUMBER_OF_CITIES, cities.size());
40 c.saveCityToSharedPrefs(editor, count);
43 editor.apply();
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
ContactsUpgradeReceiver.java 67 SharedPreferences.Editor editor = prefs.edit(); local
68 editor.putInt(PREF_DB_VERSION, ContactsDatabaseHelper.DATABASE_VERSION);
69 editor.putString(PREF_ICU_VERSION, curIcuVersion);
70 editor.commit();
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
AlbumSettings.java 124 SharedPreferences.Editor editor = mSettings.edit(); local
126 editor.putStringSet(ALBUM_SET, new HashSet<String>(mEnabledAlbums));
127 editor.commit();
  /external/webkit/Source/WebCore/page/
Frame.h 34 #include "Editor.h"
112 Editor* editor() const;
235 mutable Editor m_editor;
315 inline Editor* Frame::editor() const function in class:WebCore::Frame
EditorClient.h 62 class Editor;
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 23 import android.content.SharedPreferences.Editor;
116 SharedPreferences.Editor editor = ComboPreferences local
118 editor.putString(KEY_PICTURE_SIZE, candidate);
119 editor.apply();
352 SharedPreferences.Editor editor = pref.edit();
356 editor.remove("pref_video_quality_key");
358 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
359 editor.apply()
433 Editor editor = pref.edit(); local
503 Editor editor = preferences.edit(); local
510 Editor editor = preferences.edit(); local
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/
CameraSettings.java 23 import android.content.SharedPreferences.Editor;
118 SharedPreferences.Editor editor = ComboPreferences local
120 editor.putString(KEY_PICTURE_SIZE, candidate);
121 editor.apply();
358 SharedPreferences.Editor editor = pref.edit();
362 editor.remove("pref_video_quality_key");
364 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
365 editor.apply()
439 Editor editor = pref.edit(); local
509 Editor editor = preferences.edit(); local
516 Editor editor = preferences.edit(); local
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
CameraSettings.java 22 import android.content.SharedPreferences.Editor;
105 SharedPreferences.Editor editor = ComboPreferences local
107 editor.putString(KEY_PICTURE_SIZE, candidate);
108 editor.apply();
296 SharedPreferences.Editor editor = pref.edit();
300 editor.remove("pref_video_quality_key");
302 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
303 editor.apply()
358 Editor editor = pref.edit(); local
429 Editor editor = preferences.edit(); local
436 Editor editor = preferences.edit(); local
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpResponseCache.java 174 DiskLruCache.Editor editor = null; local
176 editor = cache.edit(key);
177 if (editor == null) {
180 entry.writeTo(editor);
181 return new CacheRequestImpl(editor);
183 abortQuietly(editor);
205 DiskLruCache.Editor editor = null; local
207 editor = snapshot.edit(); // returns null if snapshot is not curren
280 private final DiskLruCache.Editor editor; field in class:HttpResponseCache.CacheRequestImpl
    [all...]
  /libcore/luni/src/main/java/libcore/net/http/
HttpResponseCache.java 159 DiskLruCache.Editor editor = null; local
161 editor = cache.edit(key);
162 if (editor == null) {
165 entry.writeTo(editor);
166 return new CacheRequestImpl(editor);
168 abortQuietly(editor);
189 DiskLruCache.Editor editor = null; local
191 editor = snapshot.edit(); // returns null if snapshot is not curren
264 private final DiskLruCache.Editor editor; field in class:HttpResponseCache.CacheRequestImpl
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchService.java 246 SharedPreferences.Editor editor = prefs.edit(); local
248 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, clockTime);
249 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1);
250 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, true);
252 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, clockTime);
253 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, -1);
254 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, false);
256 editor.putBoolean(Stopwatches.PREF_UPDATE_CIRCLE, false);
257 editor.apply()
285 SharedPreferences.Editor editor = prefs.edit(); local
328 SharedPreferences.Editor editor = prefs.edit(); local
371 SharedPreferences.Editor editor = prefs.edit(); local
386 SharedPreferences.Editor editor = prefs.edit(); local
417 SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /cts/hostsidetests/appsecurity/test-apps/AppWithData/src/com/android/cts/appwithdata/
CreatePrivateDataTest.java 68 SharedPreferences.Editor editor = prefs.edit(); local
69 editor.putString(PREFERENCE_KEY, PREFERENCE_VALUE);
70 editor.commit();
  /development/samples/ApiDemos/src/com/example/android/apis/appwidget/
ExampleAppWidgetConfigure.java 108 SharedPreferences.Editor prefs = context.getSharedPreferences(PREFS_NAME, 0).edit();
  /development/samples/training/device-management-policy/src/com/example/training/deviceadmin/
Policy.java 71 SharedPreferences.Editor editor = local
74 editor.putInt(KEY_PASSWORD_QUALITY, passwordQuality);
78 editor.putInt(KEY_PASSWORD_LENGTH, passwordLength);
82 editor.putInt(KEY_PASSWORD_MIN_UPPERCASE, passwordMinUppercase);
85 editor.commit();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorCrop.java 33 public class EditorCrop extends Editor implements EditorInfo {
  /development/samples/KeyChainDemo/src/com/example/android/keychain/
KeyChainDemoActivity.java 22 import android.content.SharedPreferences.Editor;
193 Editor editor = pref.edit(); local
194 editor.putString(KEYCHAIN_PREF_ALIAS, alias);
195 editor.commit();
  /packages/apps/Browser/src/com/android/browser/
AutofillHandler.java 22 import android.content.SharedPreferences.Editor;
225 Editor ed = PreferenceManager.

Completed in 1279 milliseconds

1 2 34 5 6 7 8 910