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

1 2 3 4 5 6 7 8

  /external/webkit/Source/WebCore/editing/wx/
EditorWx.cpp 27 #include "Editor.h"
34 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
39 void Editor::showColorPanel()
44 void Editor::showFontPanel()
49 void Editor::showStylesPanel()
  /frameworks/base/core/java/android/content/
SharedPreferences.java 26 * Modifications to the preferences must go through an {@link Editor} object
64 * object. All changes you make in an editor are batched, and not copied
68 public interface Editor {
70 * Set a String value in the preferences editor, to be written back once
76 * @return Returns a reference to the same Editor object, so you can
79 Editor putString(String key, String value);
82 * Set a set of String values in the preferences editor, to be written
87 * @return Returns a reference to the same Editor object, so you can
90 Editor putStringSet(String key, Set<String> values);
93 * Set an int value in the preferences editor, to be written back onc
    [all...]
  /external/webkit/Source/WebCore/editing/android/
EditorAndroid.cpp 28 #include "Editor.h"
34 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
  /external/webkit/Source/WebCore/editing/brew/
EditorBrew.cpp 28 #include "Editor.h"
34 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
  /external/webkit/Source/WebCore/editing/haiku/
EditorHaiku.cpp 29 #include "Editor.h"
38 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
  /external/webkit/Source/WebCore/editing/qt/
EditorQt.cpp 28 #include "Editor.h"
42 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
  /external/webkit/Source/WebCore/editing/chromium/
EditorChromium.cpp 32 #include "Editor.h"
40 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/mocks/
MockSharedPreferences.java 31 public class MockSharedPreferences implements SharedPreferences, SharedPreferences.Editor {
36 public Editor edit() {
100 public Editor putBoolean(String key, boolean value) {
105 public Editor putFloat(String key, float value) {
110 public Editor putInt(String key, int value) {
115 public Editor putLong(String key, long value) {
120 public Editor putString(String key, String value) {
125 public Editor putStringSet(String key, Set<String> values) {
130 public Editor remove(String key) {
135 public Editor clear()
    [all...]
  /packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/util/
MockSharedPreferences.java 31 public class MockSharedPreferences implements SharedPreferences, SharedPreferences.Editor {
36 public Editor edit() {
100 public Editor putBoolean(String key, boolean value) {
105 public Editor putFloat(String key, float value) {
110 public Editor putInt(String key, int value) {
115 public Editor putLong(String key, long value) {
120 public Editor putString(String key, String value) {
125 public Editor putStringSet(String key, Set<String> values) {
130 public Editor remove(String key) {
135 public Editor clear()
    [all...]
  /frameworks/ex/common/java/com/android/common/
SharedPreferencesCompat.java 25 * Reflection utils to call SharedPreferences$Editor.apply when possible,
32 Class cls = SharedPreferences.Editor.class;
39 public static void apply(SharedPreferences.Editor editor) {
42 sApplyMethod.invoke(editor);
50 editor.commit();
  /packages/apps/Music/src/com/android/music/
SharedPreferencesCompat.java 25 * Reflection utils to call SharedPreferences$Editor.apply when possible,
33 Class cls = SharedPreferences.Editor.class;
41 public static void apply(SharedPreferences.Editor editor) {
44 sApplyMethod.invoke(editor);
52 editor.commit();
  /packages/apps/Calendar/tests/src/com/android/calendar/
FakeSharedPreferences.java 20 import android.content.SharedPreferences.Editor;
27 class FakeSharedPreferences implements SharedPreferences, SharedPreferences.Editor {
33 public Editor edit() {
108 public Editor putBoolean(String key, boolean value) {
114 public Editor putFloat(String key, float value) {
120 public Editor putInt(String key, int value) {
126 public Editor putLong(String key, long value) {
132 public Editor putString(String key, String value) {
138 public Editor putStringSet(String key, Set<String> values) {
144 public Editor remove(String key)
    [all...]
  /external/webkit/Source/WebCore/platform/win/
EditorWin.cpp 27 #include "Editor.h"
42 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
  /packages/apps/Email/tests/src/com/android/email/
MockSharedPreferences.java 31 public class MockSharedPreferences implements SharedPreferences, SharedPreferences.Editor {
37 public Editor edit() {
102 public Editor putBoolean(String key, boolean value) {
107 public Editor putFloat(String key, float value) {
112 public Editor putInt(String key, int value) {
117 public Editor putLong(String key, long value) {
122 public Editor putString(String key, String value) {
127 public Editor putStringSet(String key, Set<String> values) {
132 public Editor remove(String key) {
137 public Editor clear()
    [all...]
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
Editors.java 17 package com.android.notificationstudio.editor;
34 public interface Editor {
38 private static final Map<Integer, Editor> EDITORS = editors();
41 private static Map<Integer, Editor> editors() {
42 Map<Integer, Editor> editors = new HashMap<Integer, Editor>();
69 Editor editor = EDITORS.get(item.getType()); local
70 if (editor == null)
72 Runnable updater = editor.bindEditor(editorView, item, new Runnable()
    [all...]
  /cts/tests/tests/content/src/android/content/cts/
SharedPreferencesTest.java 97 // Do some initial operation on editor. No commit needed.
98 public abstract void setUp(SharedPreferences.Editor editor);
100 // Do some later operation on editor (e.g. a redundant edit).
102 public abstract void subsequentEdit(SharedPreferences.Editor editor);
112 SharedPreferences.Editor editor; local
118 editor = prefs.edit();
119 setUp(editor);
241 SharedPreferences.Editor editor = prefs.edit(); local
278 SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
Editor.java 17 package com.android.contacts.editor;
29 public interface Editor {
33 * Called when the given {@link Editor} is requested to be deleted by the user.
35 public void onDeleteRequested(Editor editor);
38 * Called when the given {@link Editor} has a request, for example it
48 // The editor has switched between different representations of the same
54 * Returns whether or not all the fields are empty in this {@link Editor}.
59 * Prepares this editor for the given {@link ValuesDelta}, which
69 * Add a specific {@link EditorListener} to this {@link Editor}
    [all...]
  /external/webkit/Source/WebCore/editing/mac/
EditorMac.mm 27 #import "Editor.h"
33 #import "Editor.h"
44 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
49 void Editor::showFontPanel()
54 void Editor::showStylesPanel()
59 void Editor::showColorPanel()
64 void Editor::pasteWithPasteboard(Pasteboard* pasteboard, bool allowPlainText)
69 m_frame->editor()->client()->setInsertionPasteboard([NSPasteboard generalPasteboard]);
89 m_frame->editor()->client()->setInsertionPasteboard(nil);
92 NSDictionary* Editor::fontAttributesForSelectionStart() cons
    [all...]
  /packages/apps/Camera/src/com/android/camera/
ComboPreferences.java 143 private class MyEditor implements Editor {
144 private Editor mEditorGlobal;
145 private Editor mEditorLocal;
167 public Editor clear() {
174 public Editor remove(String key) {
181 public Editor putString(String key, String value) {
191 public Editor putInt(String key, int value) {
201 public Editor putLong(String key, long value) {
211 public Editor putFloat(String key, float value) {
221 public Editor putBoolean(String key, boolean value)
    [all...]
  /packages/apps/LegacyCamera/src/com/android/camera/
ComboPreferences.java 135 private class MyEditor implements Editor {
136 private Editor mEditorGlobal;
137 private Editor mEditorLocal;
156 public Editor clear() {
162 public Editor remove(String key) {
168 public Editor putString(String key, String value) {
177 public Editor putInt(String key, int value) {
186 public Editor putLong(String key, long value) {
195 public Editor putFloat(String key, float value) {
204 public Editor putBoolean(String key, boolean value)
    [all...]
  /external/webkit/Source/WebCore/editing/
Editor.cpp 28 #include "Editor.h"
99 VisibleSelection Editor::selectionForCommand(Event* event)
122 EditingBehavior Editor::behavior() const
130 EditorClient* Editor::client() const
138 TextCheckerClient* Editor::textChecker() const
145 void Editor::handleKeyboardEvent(KeyboardEvent* event)
151 void Editor::handleInputMethodKeydown(KeyboardEvent* event)
157 bool Editor::handleTextEvent(TextEvent* event)
182 bool Editor::canEdit() const
187 bool Editor::canEditRichly() cons
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
Prefs.java 36 public static SharedPreferences.Editor edit(Context context) {
  /packages/apps/Contacts/src/com/android/contacts/socialwidget/
SocialWidgetSettings.java 21 import android.content.SharedPreferences.Editor;
51 final Editor editor = settings.edit(); local
56 editor.remove(getPreferenceKey(widgetId));
58 editor.apply();
79 final Editor editor = settings.edit(); local
81 editor.remove(getPreferenceKey(widgetId));
83 editor.putString(getPreferenceKey(widgetId), contactLookupUri.toString());
85 editor.apply()
99 final SharedPreferences.Editor editor = settings.edit(); local
    [all...]
  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
Settings.java 20 import android.content.SharedPreferences.Editor;
55 Editor editor = mSharedPref.edit(); local
56 editor.putBoolean(ANDPY_CONFS_VIBRATE_KEY, mVibrate);
57 editor.putBoolean(ANDPY_CONFS_KEYSOUND_KEY, mKeySound);
58 editor.putBoolean(ANDPY_CONFS_PREDICTION_KEY, mPrediction);
59 editor.commit();
  /packages/screensavers/WebView/src/com/android/dreams/web/
SetURL.java 20 import android.content.SharedPreferences.Editor;
49 final Editor editor = prefs.edit(); local
50 editor.putString("url", url);
51 editor.putBoolean("interactive", false);
52 editor.commit();

Completed in 252 milliseconds

1 2 3 4 5 6 7 8