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

1 2 34 5 6

  /external/replicaisland/src/com/replica/replicaisland/
KeyboardConfigDialogPreference.java 194 SharedPreferences.Editor editor = mSharedPrefs.edit(); local
195 editor.putInt(mLeftPrefKey, mLeftKeyCode);
196 editor.putInt(mRightPrefKey, mRightKeyCode);
197 editor.putInt(mJumpPrefKey, mJumpKeyCode);
198 editor.putInt(mAttackPrefKey, mAttackKeyCode);
199 editor.commit();
  /external/webkit/Source/WebCore/platform/gtk/
ClipboardGtk.cpp 22 #include "Editor.h"
49 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame* frame)
312 m_dataObject->setText(frame->editor()->selectedText());
  /external/webkit/Source/WebKit/android/WebCoreSupport/
EditorClientAndroid.cpp 29 #include "Editor.h"
185 Editor::Command command = frame->editor()->command(interpretKeyEvent(event));
206 if (frame->editor()->insertText(keyEvent->text(), event))
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 179 // open the shared preferences editor, and write the value.
182 SharedPreferences.Editor editor = sp.edit(); local
183 editor.putString(NETWORK_SELECTION_KEY, nsm.operatorNumeric);
184 editor.putString(NETWORK_SELECTION_NAME_KEY, nsm.operatorAlphaLong);
187 if (! editor.commit()) {
CdmaSMSDispatcher.java 142 SharedPreferences.Editor editor = sp.edit(); local
143 editor.putInt(CDMAPhone.VM_COUNT_CDMA, voicemailCount);
144 editor.apply();
  /frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
AppWidgetHostActivity.java 93 SharedPreferences.Editor prefs = getPreferences(0).edit();
  /frameworks/base/tests/backup/src/com/android/backuptest/
BackupTestActivity.java 125 SharedPreferences.Editor editor = prefs.edit();
126 editor.putInt(PREF_KEY, val+1);
127 editor.commit();
  /frameworks/ex/common/java/com/android/common/
OperationScheduler.java 290 SharedPreferences.Editor editor = mStorage.edit(); local
291 editor.putLong(PREFIX + "lastErrorTimeMillis", currentTimeMillis());
292 editor.putInt(PREFIX + "errorCount",
294 SharedPreferencesCompat.apply(editor);
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorUtils.java 17 package com.android.contacts.editor;
116 final SharedPreferences.Editor editor = mPrefs.edit() local
124 editor.putString(KEY_KNOWN_ACCOUNTS, "");
125 editor.putString(KEY_DEFAULT_ACCOUNT, "");
127 editor.putString(KEY_KNOWN_ACCOUNTS,
129 editor.putString(KEY_DEFAULT_ACCOUNT, defaultAccount.stringify());
131 editor.apply();
192 * @return true if the contact editor should show the "accounts changed" notification, that is:
LabeledEditorView.java 17 package com.android.contacts.editor;
61 public abstract class LabeledEditorView extends LinearLayout implements Editor, DialogShowingView {
150 // the last {@link Editor} in the section).
164 // safe to remove views (in case the user requests to delete this editor).
325 * Prepare this editor using the given {@link DataKind} for defining
  /external/webkit/Source/WebKit/chromium/src/
WebViewImpl.cpp 53 #include "Editor.h"
551 Editor* editor = focused->editor(); local
555 editor->command(AtomicString("Paste")).execute();
1283 Editor* editor = focusedFrame->editor(); local
1388 const Editor* editor = focused->editor(); local
    [all...]
EditorClientImpl.cpp 32 #include "Editor.h"
129 const Editor* editor = frame->editor(); local
130 if (!editor)
132 if (editor->isSpellCheckingEnabledInFocusedNode())
390 // Keys with special meaning. These will be delegated to the editor using
576 Editor::Command command = frame->editor()->command(commandName);
580 // commands that just insert text if executed via Editor should be treated
    [all...]
  /external/webkit/Source/WebCore/editing/
SpellingCorrectionController.cpp 291 m_frame->editor()->markAllMisspellingsAndBadGrammarInRanges(Editor::MarkSpelling | Editor::ShowCorrectionPanel, adjacentWords.toNormalizedRange().get(), 0);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.cpp 30 #include "Editor.h"
66 if (!frame || !frame->editor()->canEdit())
82 frame->editor()->confirmComposition(String::fromUTF8(compositionString));
89 if (!frame || !frame->editor()->canEdit())
99 frame->editor()->setComposition(preeditString, underlines, 0, 0);
450 if (targetFrame->editor()->ignoreCompositionSelectionChange())
457 if (!targetFrame->editor()->hasComposition())
462 if (!targetFrame->editor()->getCompositionSelection(start, end)) {
465 targetFrame->editor()->confirmCompositionWithoutDisturbingSelection();
673 Vector<Editor::Command> commands
    [all...]
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 23 import android.content.SharedPreferences.Editor;
438 Editor edit = mPrefs.edit();
  /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 799 SharedPreferences.Editor editor = sp.edit(); local
800 editor.putString(VM_NUMBER, number);
801 editor.apply();
822 SharedPreferences.Editor editor = sp.edit(); local
823 editor.putString(VM_SIM_IMSI, imsi);
824 editor.apply();
1361 SharedPreferences.Editor editor = sp.edit(); local
1379 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppManager.java 175 SharedPreferences.Editor editor = mContext.getSharedPreferences(OPP_PREFERENCE_FILE, 0) local
177 editor.putBoolean(SENDING_FLAG, mSendingFlag);
178 editor.putBoolean(MULTIPLE_FLAG, mMultipleFlag);
180 editor.putString(MIME_TYPE_MULTIPLE, mMimeTypeOfSendingFiles);
188 editor.putString(FILE_URIS, strUris);
190 editor.remove(MIME_TYPE);
191 editor.remove(FILE_URI);
193 editor.putString(MIME_TYPE, mMimeTypeOfSendingFile);
194 editor.putString(FILE_URI, mUriOfSendingFile)
    [all...]
  /packages/apps/Mms/src/com/android/mms/ui/
MessagingPreferenceActivity.java 307 SharedPreferences.Editor editor =
310 editor.putBoolean(MessagingPreferenceActivity.NOTIFICATION_ENABLED, enabled);
312 editor.apply();
  /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...]
  /packages/apps/Calendar/src/com/android/calendar/
Utils.java 239 SharedPreferences.Editor editor = prefs.edit(); local
240 editor.putBoolean(key, value);
241 editor.apply();
246 SharedPreferences.Editor editor = prefs.edit(); local
247 editor.putInt(key, value);
248 editor.apply();
259 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...]

Completed in 1036 milliseconds

1 2 34 5 6