HomeSort by relevance Sort by last modified time
    Searched refs:Editor (Results 51 - 75 of 195) sorted by null

1 23 4 5 6 7 8

  /external/webkit/Source/WebCore/editing/
Editor.h 82 class Editor {
84 Editor(Frame*);
85 ~Editor();
322 // We should make these functions private when their callers in Frame are moved over here to Editor
438 inline void Editor::setStartNewKillRingSequence(bool flag)
443 inline const VisibleSelection& Editor::mark() const
448 inline void Editor::setMark(const VisibleSelection& selection)
453 inline bool Editor::markedTextMatchesAreHighlighted() const
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
DiskLruCache.java 76 * entry may have only one editor at one time; if a value is not available to be
86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
87 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
391 entry.currentEditor = new Editor(entry);
510 * Returns an editor for the entry named {@code key}, or null if another
513 public Editor edit(String key) throws IOException {
517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
532 Editor editor = new Editor(entry) local
    [all...]
  /external/okhttp/src/main/java/libcore/io/
DiskLruCache.java 67 * entry may have only one editor at one time; if a value is not available to be
77 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
78 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
282 entry.currentEditor = new Editor(entry);
392 * Returns an editor for the entry named {@code key}, or null if another
395 public Editor edit(String key) throws IOException {
399 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
414 Editor editor = new Editor(entry) local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 65 * entry may have only one editor at one time; if a value is not available to be
75 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
76 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
281 entry.currentEditor = new Editor(entry);
397 * Returns an editor for the entry named {@code key}, or null if another
400 public Editor edit(String key) throws IOException {
404 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
419 Editor editor = new Editor(entry) local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/admin/
PolicySerializationTestActivity.java 28 import android.content.SharedPreferences.Editor;
128 SharedPreferences.Editor editor = prefs.edit(); local
129 editor.clear();
130 editor.putBoolean(LOAD_EXPECTED_POLICY_PREFERENCE, false);
131 editor.apply();
161 SharedPreferences.Editor editor = prefs.edit(); local
162 editor.clear();
163 editor.putBoolean(LOAD_EXPECTED_POLICY_PREFERENCE, true)
    [all...]
  /frameworks/base/core/java/android/preference/
Preference.java 1380 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1432 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1481 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1525 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1569 SharedPreferences.Editor editor = mPreferenceManager.getEditor(); local
1613 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
484 SharedPreferences.Editor editor = local
487 editor.apply();
490 // SharedPreferences.Editor implementation without
492 editor.commit();
498 * Returns an editor to use when modifying the shared preferences.
502 * @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 34 SharedPreferences.Editor editor = prefs.edit(); local
35 editor.putInt(NUMBER_OF_CITIES, cities.size());
41 c.saveCityToSharedPrefs(editor, count);
44 editor.apply();
  /packages/screensavers/PhotoTable/src/com/android/dreams/phototable/
AlbumSettings.java 104 SharedPreferences.Editor editor = mSettings.edit(); local
106 editor.putStringSet(ALBUM_SET, new HashSet<String>(mEnabledAlbums));
107 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
  /packages/apps/Camera/src/com/android/camera/
CameraSettings.java 23 import android.content.SharedPreferences.Editor;
113 SharedPreferences.Editor editor = ComboPreferences local
115 editor.putString(KEY_PICTURE_SIZE, candidate);
116 editor.apply();
346 SharedPreferences.Editor editor = pref.edit();
350 editor.remove("pref_video_quality_key");
352 editor.putInt(KEY_LOCAL_VERSION, CURRENT_LOCAL_VERSION);
353 editor.apply()
427 Editor editor = pref.edit(); local
497 Editor editor = preferences.edit(); local
504 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/libcore/net/http/
HttpResponseCache.java 164 DiskLruCache.Editor editor = null; local
166 editor = cache.edit(key);
167 if (editor == null) {
170 entry.writeTo(editor);
171 return new CacheRequestImpl(editor);
173 abortQuietly(editor);
195 DiskLruCache.Editor editor = null; local
197 editor = snapshot.edit(); // returns null if snapshot is not curren
270 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...]
  /external/clang/lib/Frontend/
DiagnosticRenderer.cpp 110 edit::EditedSource Editor(SM, LangOpts);
111 if (Editor.commit(commit)) {
113 Editor.applyRewrites(Rec);
  /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();

Completed in 356 milliseconds

1 23 4 5 6 7 8