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

12 3 4 5 6 7 8 910

  /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/Camera/src/com/android/camera/
ComboPreferences.java 211 private class MyEditor implements Editor {
212 private Editor mEditorGlobal;
213 private Editor mEditorLocal;
235 public Editor clear() {
242 public Editor remove(String key) {
249 public Editor putString(String key, String value) {
259 public Editor putInt(String key, int value) {
269 public Editor putLong(String key, long value) {
279 public Editor putFloat(String key, float value) {
289 public Editor putBoolean(String key, boolean value)
    [all...]
  /packages/apps/Gallery2/src/com/android/camera/
ComboPreferences.java 213 private class MyEditor implements Editor {
214 private Editor mEditorGlobal;
215 private Editor mEditorLocal;
237 public Editor clear() {
244 public Editor remove(String key) {
251 public Editor putString(String key, String value) {
261 public Editor putInt(String key, int value) {
271 public Editor putLong(String key, long value) {
281 public Editor putFloat(String key, float value) {
291 public Editor putBoolean(String key, boolean value)
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/controller/
BasicSlider.java 28 import com.android.gallery3d.filtershow.editors.Editor;
33 Editor mEditor;
36 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
38 mEditor = editor;
ActionSlider.java 26 import com.android.gallery3d.filtershow.editors.Editor;
37 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
38 super.setUp(container, parameter, editor);
StyleChooser.java 16 import com.android.gallery3d.filtershow.editors.Editor;
24 protected Editor mEditor;
30 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
32 mEditor = editor;
TitledSlider.java 29 import com.android.gallery3d.filtershow.editors.Editor;
37 Editor mEditor;
42 public void setUp(ViewGroup container, Parameter parameter, Editor editor) {
44 mEditor = editor;
  /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/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
ImageOnlyEditor.java 26 * The editor with no slider for filters without UI
28 public class ImageOnlyEditor extends Editor {
EditorCurves.java 28 public class EditorCurves extends Editor {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
PreferenceManagerTest.java 5 import android.content.SharedPreferences.Editor;
25 Editor editor = testPrefs.edit(); local
26 editor.putInt("foobar", 13);
27 editor.commit();
  /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();
SetURLInteractive.java 20 import android.content.SharedPreferences.Editor;
49 final Editor editor = prefs.edit(); local
50 editor.putString("url", url);
51 editor.putBoolean("interactive", true);
52 editor.commit();
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
BooleanEditor.java 17 package com.android.notificationstudio.editor;
26 import com.android.notificationstudio.editor.Editors.Editor;
29 public class BooleanEditor implements Editor {
  /packages/apps/Settings/src/com/android/settings/bluetooth/
LocalBluetoothPreferences.java 116 SharedPreferences.Editor editor = getSharedPreferences(context).edit(); local
117 editor.putString(KEY_LAST_SELECTED_DEVICE,
119 editor.putLong(KEY_LAST_SELECTED_DEVICE_TIME,
121 editor.apply();
125 SharedPreferences.Editor editor = getSharedPreferences(context).edit(); local
126 editor.putLong(KEY_DISCOVERABLE_END_TIMESTAMP, endTimestamp);
127 editor.apply();
135 SharedPreferences.Editor editor = getSharedPreferences(context).edit()
154 SharedPreferences.Editor editor = getSharedPreferences(context).edit(); local
160 SharedPreferences.Editor editor = getSharedPreferences(context).edit(); local
    [all...]
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 41 OwningPtr<edit::EditedSource> Editor;
63 Editor.reset(new edit::EditedSource(Context.getSourceManager(),
135 edit::Commit commit(*Consumer.Editor);
137 Consumer.Editor->commit(commit);
141 edit::Commit commit(*Consumer.Editor);
143 Consumer.Editor->commit(commit);
208 Editor->applyRewrites(Rec);
  /packages/apps/Contacts/src/com/android/contacts/editor/
KindSectionView.java 17 package com.android.contacts.editor;
30 import com.android.contacts.editor.Editor.EditorListener;
113 public void onDeleteRequested(Editor editor) {
114 // If there is only 1 editor in the section, then don't allow the user to delete it.
115 // Just clear the fields in the editor.
117 editor.clearAllFields();
119 // Otherwise it's okay to delete this {@link Editor}
120 editor.deleteEditor()
202 Editor editor = (Editor) view; local
    [all...]
  /libcore/luni/src/test/java/libcore/io/
DiskLruCacheTest.java 71 DiskLruCache.Editor creator = cache.edit("k1");
86 DiskLruCache.Editor creator = cache.edit("k1");
100 DiskLruCache.Editor creator = cache.edit("k1");
110 DiskLruCache.Editor creator = cache.edit("k1");
126 DiskLruCache.Editor creator = cache.edit("k1");
136 DiskLruCache.Editor k1Creator = cache.edit("k1");
140 DiskLruCache.Editor k2Creator = cache.edit("k2");
153 DiskLruCache.Editor editor = cache.edit("k1"); local
154 editor.set(0, "A")
161 DiskLruCache.Editor editor = cache.edit("k1"); local
169 DiskLruCache.Editor editor = cache.edit("k1"); local
652 DiskLruCache.Editor editor = cache.edit("A"); local
668 DiskLruCache.Editor editor = snapshot.edit(); local
680 DiskLruCache.Editor editor = snapshot.edit(); local
842 DiskLruCache.Editor editor = cache.edit(key); local
    [all...]
  /external/okhttp/src/test/java/com/squareup/okhttp/internal/
DiskLruCacheTest.java 72 DiskLruCache.Editor creator = cache.edit("k1");
87 DiskLruCache.Editor creator = cache.edit("k1");
101 DiskLruCache.Editor creator = cache.edit("k1");
111 DiskLruCache.Editor creator = cache.edit("k1");
127 DiskLruCache.Editor creator = cache.edit("k1");
137 DiskLruCache.Editor k1Creator = cache.edit("k1");
141 DiskLruCache.Editor k2Creator = cache.edit("k2");
152 DiskLruCache.Editor editor = cache.edit("k1"); local
153 editor.set(0, "A")
160 DiskLruCache.Editor editor = cache.edit("k1"); local
168 DiskLruCache.Editor editor = cache.edit("k1"); local
602 DiskLruCache.Editor editor = snapshot.edit(); local
614 DiskLruCache.Editor editor = snapshot.edit(); local
776 DiskLruCache.Editor editor = cache.edit(key); local
    [all...]
  /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();
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CityObj.java 53 public void saveCityToSharedPrefs(SharedPreferences.Editor editor, int index) {
54 editor.putString (CITY_NAME + index, mCityName);
55 editor.putString (CITY_TIME_ZONE + index, mTimeZone);
56 editor.putString (CITY_ID + index, mCityId);
  /packages/apps/Nfc/nci/src/com/android/nfc/dhimpl/
NativeNfcSecureElement.java 35 SharedPreferences.Editor mPrefsEditor;

Completed in 1751 milliseconds

12 3 4 5 6 7 8 910