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

1 2 3 4 5 6

  /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
63 * object. All changes you make in an editor are batched, and not copied
67 public interface Editor {
69 * Set a String value in the preferences editor, to be written back once
75 * @return Returns a reference to the same Editor object, so you can
78 Editor putString(String key, String value);
81 * Set a set of String values in the preferences editor, to be written
86 * @return Returns a reference to the same Editor object, so you can
89 Editor putStringSet(String key, Set<String> values);
92 * 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...]
  /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/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
SharedPreferencesCompat.java 25 * Reflection utils to call SharedPreferences$Editor.apply when possible,
33 return SharedPreferences.Editor.class.getMethod("apply");
40 public static void apply(SharedPreferences.Editor editor) {
43 sApplyMethod.invoke(editor);
51 editor.commit();
  /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...]
  /cts/tests/tests/content/src/android/content/cts/
SharedPreferencesTest.java 103 // Do some initial operation on editor. No commit needed.
104 public abstract void setUp(SharedPreferences.Editor editor);
106 // Do some later operation on editor (e.g. a redundant edit).
108 public abstract void subsequentEdit(SharedPreferences.Editor editor);
118 SharedPreferences.Editor editor; local
124 editor = prefs.edit();
125 setUp(editor);
247 SharedPreferences.Editor editor = prefs.edit(); local
284 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...]
KindSectionView.java 17 package com.android.contacts.editor;
20 import com.android.contacts.editor.Editor.EditorListener;
110 public void onDeleteRequested(Editor editor) {
111 // If there is only 1 editor in the section, then don't allow the user to delete it.
112 // Just clear the fields in the editor.
114 editor.clearAllFields();
116 // Otherwise it's okay to delete this {@link Editor}
117 editor.deleteEditor()
199 Editor editor = (Editor) view; local
    [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...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
Prefs.java 35 public static SharedPreferences.Editor edit(Context context) {
  /packages/apps/Camera/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...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothPreferences.java 109 SharedPreferences.Editor editor = getSharedPreferences(context).edit(); local
110 editor.putString(KEY_LAST_SELECTED_DEVICE,
112 editor.putLong(KEY_LAST_SELECTED_DEVICE_TIME,
114 editor.apply();
118 SharedPreferences.Editor editor = getSharedPreferences(context).edit(); local
119 editor.putLong(KEY_DISCOVERABLE_END_TIMESTAMP, endTimestamp);
120 editor.apply();
128 SharedPreferences.Editor editor = getSharedPreferences(context).edit()
147 SharedPreferences.Editor editor = getSharedPreferences(context).edit(); local
153 SharedPreferences.Editor editor = getSharedPreferences(context).edit(); local
    [all...]
  /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/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/
BasicSmsReceiverApp.java 54 SharedPreferences.Editor editor = prefs.edit(); local
55 editor.putInt(PREF_KEY_NOTIFICATION_ID, notificationId);
56 editor.apply();
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppPreference.java 40 import android.content.SharedPreferences.Editor;
130 Editor ed = mNamePreference.edit();
142 Editor ed = mChannelPreference.edit();
151 Editor ed = mChannelPreference.edit();

Completed in 937 milliseconds

1 2 3 4 5 6