HomeSort by relevance Sort by last modified time
    Searched refs:Editor (Results 101 - 125 of 163) sorted by null

1 2 3 45 6 7

  /packages/providers/TelephonyProvider/src/com/android/providers/telephony/
TelephonyProvider.java 401 SharedPreferences.Editor editor = sp.edit(); local
402 editor.putLong(COLUMN_APN_ID, id != null ? id.longValue() : -1);
403 editor.apply();
418 SharedPreferences.Editor editor = sp.edit(); local
419 editor.putLong(APN_CONFIG_CHECKSUM, id);
420 editor.apply();
  /external/webkit/Source/WebKit/efl/WebCoreSupport/
EditorClientEfl.cpp 28 #include "Editor.h"
375 Editor::Command command = frame->editor()->command(interpretKeyEvent(event));
378 // WebKit doesn't have enough information about mode to decide how commands that just insert text if executed via Editor should be treated,
395 return frame->editor()->insertText(event->keyEvent()->text(), event);
  /external/webkit/Source/WebKit/wince/WebCoreSupport/
EditorClientWinCE.cpp 385 Editor::Command command = frame->editor()->command(interpretKeyEvent(event));
388 // WebKit doesn't have enough information about mode to decide how commands that just insert text if executed via Editor should be treated,
405 return frame->editor()->insertText(event->keyEvent()->text(), event);
  /external/webkit/Source/WebKit/wx/WebKitSupport/
EditorClientWx.cpp 31 #include "Editor.h"
391 Editor::Command command = frame->editor()->command(interpretKeyEvent(event));
394 // WebKit doesn't have enough information about mode to decide how commands that just insert text if executed via Editor should be treated,
407 return frame->editor()->insertText(event->keyEvent()->text(), event);
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GSMPhone.java 791 SharedPreferences.Editor editor = sp.edit(); local
792 editor.putString(VM_NUMBER, number);
793 editor.apply();
814 SharedPreferences.Editor editor = sp.edit(); local
815 editor.putString(VM_SIM_IMSI, imsi);
816 editor.apply();
1379 SharedPreferences.Editor editor = sp.edit(); local
1397 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessagingPreferenceActivity.java 319 SharedPreferences.Editor editor =
322 editor.putBoolean(MessagingPreferenceActivity.NOTIFICATION_ENABLED, enabled);
324 editor.apply();
ConversationList.java 212 SharedPreferences.Editor editor = mPrefs.edit();
213 editor.putBoolean(MessagingPreferenceActivity.AUTO_DELETE, true);
214 editor.apply();
235 SharedPreferences.Editor editor = mPrefs.edit(); local
236 editor.putBoolean(CHECKED_MESSAGE_LIMITS, true);
237 editor.apply();
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelEffect.java 156 final SharedPreferences.Editor editor = prefs.edit(); local
164 editor.putBoolean(Key.global_enabled.toString(), isGlobalEnabled);
172 editor.putBoolean(Key.virt_enabled.toString(), isVIEnabled);
173 editor.putInt(Key.virt_strength.toString(), vIStrength);
180 editor.putBoolean(Key.bb_enabled.toString(), isBBEnabled);
181 editor.putInt(Key.bb_strength.toString(), bBStrength);
246 editor.putInt(Key.eq_level_range.toString() + 0, mEQBandLevelRange[0]);
247 editor.putInt(Key.eq_level_range.toString() + 1, mEQBandLevelRange[1]);
248 editor.putInt(Key.eq_num_bands.toString(), mEQNumBands)
485 final SharedPreferences.Editor editor = prefs.edit(); local
539 final SharedPreferences.Editor editor = prefs.edit(); local
959 final SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /external/webkit/Source/WebCore/page/
ContextMenuController.cpp 41 #include "Editor.h"
197 frame->editor()->copyURL(m_hitTestResult.absoluteLinkURL(), m_hitTestResult.textContent());
209 frame->editor()->copyImage(m_hitTestResult);
213 frame->editor()->copyURL(m_hitTestResult.absoluteImageURL(), m_hitTestResult.textContent());
220 frame->editor()->copyURL(m_hitTestResult.absoluteMediaURL(), m_hitTestResult.textContent());
246 frame->editor()->copy();
263 frame->editor()->command("Cut").execute();
266 frame->editor()->command("Paste").execute();
270 frame->editor()->performDelete();
275 frame->editor()->command("SelectAll").execute()
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 273 SharedPreferences.Editor editor = prefs.edit(); local
274 editor.putBoolean(key, value);
275 editor.apply();
280 SharedPreferences.Editor editor = prefs.edit(); local
281 editor.putInt(key, value);
282 editor.apply();
293 SharedPreferences.Editor editor = prefs.edit() local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaSMSDispatcher.java 174 SharedPreferences.Editor editor = sp.edit(); local
175 editor.putInt(CDMAPhone.VM_COUNT_CDMA, voicemailCount);
176 editor.apply();
  /hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
FmRxRdsConfig.java 396 SharedPreferences.Editor editor = fmConfigPreferences.edit(); local
399 editor.putBoolean(RDSAF, chbSetRdsAf.isChecked());
400 editor.putBoolean(RDS, chbRdsMode.isChecked());
401 editor.putInt(RDSSYSTEM, spnRdsSystem.getSelectedItemPosition());
403 editor.putBoolean(RDSAF, DEFAULT_RDS_AF);
404 editor.putBoolean(RDS, DEFAULT_RDS);
405 editor.putInt(RDSSYSTEM, DEFAULT_RDS_SYSTEM);
408 editor.putInt(BAND, spnBand.getSelectedItemPosition());
410 //editor.putInt(DEEMP, spnDeEmp.getSelectedItemPosition())
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 221 SharedPreferences.Editor editor = mContext.getSharedPreferences(OPP_PREFERENCE_FILE, 0) local
223 editor.putBoolean(SENDING_FLAG, mSendingFlag);
224 editor.putBoolean(MULTIPLE_FLAG, mMultipleFlag);
226 editor.putString(MIME_TYPE_MULTIPLE, mMimeTypeOfSendingFiles);
234 editor.putString(FILE_URIS, strUris);
236 editor.remove(MIME_TYPE);
237 editor.remove(FILE_URI);
239 editor.putString(MIME_TYPE, mMimeTypeOfSendingFile);
240 editor.putString(FILE_URI, mUriOfSendingFile)
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDevice.java 607 SharedPreferences.Editor editor = local
610 editor.remove(mDevice.getAddress());
612 editor.putInt(mDevice.getAddress(), permissionChoice);
614 editor.commit();
  /frameworks/base/media/java/android/mtp/
MtpDatabase.java 208 SharedPreferences.Editor e = mDeviceProperties.edit();
    [all...]
  /packages/apps/Browser/src/com/android/browser/provider/
BrowserProvider.java 28 import android.content.SharedPreferences.Editor;
417 Editor ed = p.edit();
    [all...]
  /frameworks/base/core/java/android/widget/
Editor.java 91 import android.widget.Editor.InputContentType;
92 import android.widget.Editor.InputMethodState;
93 import android.widget.Editor.SelectionModifierCursorController;
107 public class Editor {
108 private static final String TAG = "Editor";
191 Editor(TextView textView) {
390 // The default value is true, even when there is no associated Editor
848 // Note this may have to be moved out of the Editor class
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
WebFrameImpl.cpp 86 #include "Editor.h"
1120 Editor* editor = frame()->editor(); local
1131 Editor* editor = frame()->editor(); local
1199 Editor* editor = frame()->editor(); local
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Camera.java 26 import android.content.SharedPreferences.Editor;
413 Editor editor = mPreferences.edit(); local
414 editor.putString(CameraSettings.KEY_EXPOSURE, "0");
415 editor.apply();
2365 Editor editor = mPreferences.edit(); local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorFragment.java 17 package com.android.contacts.editor;
27 import com.android.contacts.editor.AggregationSuggestionEngine.Suggestion;
28 import com.android.contacts.editor.Editor.EditorListener;
122 * An intent extra that forces the editor to add the edited contact
134 * Close the editor after saving
199 * The {@link PhotoHandler} for the photo editor for the {@link #mRawContactIdRequestingPhoto}
202 * A {@link PhotoHandler} is created for each photo editor in {@link #bindPhotoHandler}, but
334 // If anything was left unsaved, save it now but keep the editor open.
446 // See if this edit operation needs to be redirected to a custom editor
702 final BaseRawContactEditorView editor; local
839 BaseRawContactEditorView editor = (BaseRawContactEditorView) mContent.getChildAt(i); local
    [all...]
LabeledEditorView.java 17 package com.android.contacts.editor;
65 public abstract class LabeledEditorView extends LinearLayout implements Editor, DialogShowingView {
156 // the last {@link Editor} in the section).
170 // safe to remove views (in case the user requests to delete this editor).
341 * Prepare this editor using the given {@link DataKind} for defining
  /packages/apps/LegacyCamera/src/com/android/camera/
Camera.java 37 import android.content.SharedPreferences.Editor;
331 Editor editor = mPreferences.edit(); local
332 editor.putString(CameraSettings.KEY_EXPOSURE, "0");
333 editor.apply();
2306 Editor editor = mPreferences.edit(); local
    [all...]
  /external/webkit/Source/WebKit2/Shared/
WebCoreArgumentCoders.h 39 #include <WebCore/Editor.h>
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebPage.h 47 #include <WebCore/Editor.h>
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
AdditionalSubtypeSettings.java 571 final SharedPreferences.Editor editor = mPrefs.edit(); local
573 editor.putString(Settings.PREF_CUSTOM_INPUT_STYLES, prefSubtypes);
575 editor.apply();

Completed in 839 milliseconds

1 2 3 45 6 7