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

1 2 3 4 5

  /external/webkit/WebCore/editing/wx/
EditorWx.cpp 27 #include "Editor.h"
34 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy)
39 void Editor::showColorPanel()
44 void Editor::showFontPanel()
49 void Editor::showStylesPanel()
  /external/webkit/WebCore/editing/android/
EditorAndroid.cpp 28 #include "Editor.h"
34 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy)
  /external/webkit/WebCore/editing/haiku/
EditorHaiku.cpp 29 #include "Editor.h"
38 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy)
  /external/webkit/WebCore/editing/qt/
EditorQt.cpp 28 #include "Editor.h"
42 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy)
  /external/webkit/WebCore/editing/mac/
EditorMac.mm 27 #import "Editor.h"
49 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy)
63 void Editor::appendToKillRing(const String& string)
69 void Editor::prependToKillRing(const String& string)
75 String Editor::yankFromKillRing()
81 void Editor::startNewKillRingSequence()
87 void Editor::setKillRingToYankedState()
93 void Editor::showFontPanel()
98 void Editor::showStylesPanel()
103 void Editor::showColorPanel(
    [all...]
  /external/webkit/WebCore/editing/chromium/
EditorChromium.cpp 32 #include "Editor.h"
39 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy)
  /external/webkit/WebCore/platform/wince/
EditorWince.cpp 23 #include "Editor.h"
38 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy)
  /frameworks/base/core/java/android/content/
SharedPreferences.java 25 * Modifications to the preferences must go through an {@link Editor} object
56 * object. All changes you make in an editor are batched, and not copied
60 public interface Editor {
62 * Set a String value in the preferences editor, to be written back once
68 * @return Returns a reference to the same Editor object, so you can
71 Editor putString(String key, String value);
74 * Set an int value in the preferences editor, to be written back once
80 * @return Returns a reference to the same Editor object, so you can
83 Editor putInt(String key, int value);
86 * Set a long value in the preferences editor, to be written back onc
    [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/Contacts/src/com/android/contacts/model/
Editor.java 29 public interface Editor {
31 * Listener for an {@link Editor}, usually to handle deleted items.
35 * Called when the given {@link Editor} has been deleted.
37 public void onDeleted(Editor editor);
40 * Called when the given {@link Editor} has a request, for example it
50 * Prepare this editor for the given {@link ValuesDelta}, which
58 * Add a specific {@link EditorListener} to this {@link Editor}.
  /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/latin/
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();
Hints.java 106 SharedPreferences.Editor editor = local
108 editor.putLong(PREF_VOICE_INPUT_LAST_TIME_USED, System.currentTimeMillis());
109 SharedPreferencesCompat.apply(editor);
168 SharedPreferences.Editor editor = sp.edit(); local
169 editor.putInt(PREF_VOICE_HINT_NUM_UNIQUE_DAYS_SHOWN, numUniqueDaysShown + 1);
170 editor.putLong(PREF_VOICE_HINT_LAST_TIME_SHOWN, System.currentTimeMillis());
171 SharedPreferencesCompat.apply(editor);
182 SharedPreferences.Editor editor = sp.edit() local
    [all...]
LanguageSwitcher.java 22 import android.content.SharedPreferences.Editor;
189 Editor editor = sp.edit(); local
190 editor.putString(LatinIME.PREF_INPUT_LANGUAGE, getInputLanguage());
191 SharedPreferencesCompat.apply(editor);
  /external/webkit/WebCore/platform/win/
EditorWin.cpp 27 #include "Editor.h"
41 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy)
  /external/webkit/WebCore/editing/
Editor.cpp 28 #include "Editor.h"
81 VisibleSelection Editor::selectionForCommand(Event* event)
99 EditorClient* Editor::client() const
106 void Editor::handleKeyboardEvent(KeyboardEvent* event)
112 void Editor::handleInputMethodKeydown(KeyboardEvent* event)
118 bool Editor::canEdit() const
123 bool Editor::canEditRichly() const
133 bool Editor::canDHTMLCut()
138 bool Editor::canDHTMLCopy()
143 bool Editor::canDHTMLPaste(
    [all...]
Editor.h 65 class Editor {
67 Editor(Frame*);
68 ~Editor();
289 // We should make these functions private when their callers in Frame are moved over here to Editor
329 inline void Editor::setStartNewKillRingSequence(bool flag)
  /cts/tests/tests/content/src/android/content/cts/
SharedPreferencesTest.java 102 // Do some initial operation on editor. No commit needed.
103 public abstract void setUp(SharedPreferences.Editor editor);
105 // Do some later operation on editor (e.g. a redundant edit).
107 public abstract void subsequentEdit(SharedPreferences.Editor editor);
117 SharedPreferences.Editor editor; local
123 editor = prefs.edit();
124 setUp(editor);
246 SharedPreferences.Editor editor = prefs.edit(); local
283 SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /packages/apps/Camera/src/com/android/camera/
ComboPreferences.java 21 import android.content.SharedPreferences.Editor;
130 private class MyEditor implements Editor {
131 private Editor mEditorGlobal;
132 private Editor mEditorLocal;
151 public Editor clear() {
157 public Editor remove(String key) {
163 public Editor putString(String key, String value) {
172 public Editor putInt(String key, int value) {
181 public Editor putLong(String key, long value) {
190 public Editor putFloat(String key, float value)
    [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/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppPreference.java 40 import android.content.SharedPreferences.Editor;
131 Editor ed = mNamePreference.edit();
143 Editor ed = mChannelPreference.edit();
152 Editor ed = mChannelPreference.edit();
  /packages/apps/Phone/src/com/android/phone/sip/
SipSharedPreferences.java 47 SharedPreferences.Editor editor = mPreferences.edit(); local
48 editor.putString(KEY_PRIMARY_ACCOUNT, accountUri);
49 editor.apply();
72 SharedPreferences.Editor editor = mPreferences.edit(); local
73 editor.putInt(KEY_NUMBER_OF_PROFILES, number);
74 editor.apply();
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PersistentState.java 46 * top text editor, but not of the bottom text editor. You can see the difference
120 SharedPreferences.Editor editor = getPreferences(0).edit(); local
121 editor.putString("text", mSaved.getText().toString());
122 editor.putInt("selection-start", mSaved.getSelectionStart());
123 editor.putInt("selection-end", mSaved.getSelectionEnd());
124 editor.commit();
RedirectGetter.java 72 SharedPreferences.Editor editor = preferences.edit();
73 editor.putString("text", mText.getText().toString());
75 if (editor.commit()) {
  /packages/apps/Contacts/src/com/android/contacts/
StickyTabs.java 95 final SharedPreferences.Editor editor =
97 editor.putInt(PREF_LAST_PHONECALL_TAB, tabIndex);
98 editor.apply();

Completed in 257 milliseconds

1 2 3 4 5