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

1 2 3 4 5 67 8 910

  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
ParametricEditor.java 46 public class ParametricEditor extends Editor {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 128 // but we'd have to dispatch types on editor.put...() functions
133 final SharedPreferences.Editor editor = prefs.edit(); local
134 editor.putBoolean(key, value);
135 editor.commit();
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
TimerFragment.java 523 SharedPreferences.Editor editor = mPrefs.edit(); local
524 editor.putBoolean(Timers.FROM_NOTIFICATION, false);
525 editor.apply();
530 SharedPreferences.Editor editor = mPrefs.edit(); local
531 editor.putBoolean(Timers.FROM_ALERT, false);
532 editor.apply();
629 SharedPreferences.Editor editor = mPrefs.edit() local
984 SharedPreferences.Editor editor = prefs.edit(); local
991 SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
TimerReceiver.java 88 SharedPreferences.Editor editor = prefs.edit(); local
89 editor.putBoolean(Timers.FROM_NOTIFICATION, true);
90 editor.putLong(Timers.NOTIF_TIME, Utils.getTimeNow());
91 editor.putInt(Timers.NOTIF_ID, timer);
92 editor.apply();
  /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;
458 Editor edit = mPrefs.edit();
    [all...]
  /packages/apps/Phone/src/com/android/phone/
RespondViaSmsManager.java 350 SharedPreferences.Editor editor = prefs.edit(); local
351 editor.remove(KEY_INSTANT_TEXT_DEFAULT_COMPONENT);
352 editor.apply();
722 SharedPreferences.Editor editor = prefs.edit(); local
723 editor.remove(KEY_INSTANT_TEXT_DEFAULT_COMPONENT);
724 editor.apply();
    [all...]
  /packages/providers/PartnerBookmarksProvider/src/com/android/providers/partnerbookmarks/
PartnerBookmarksProvider.java 24 import android.content.SharedPreferences.Editor;
160 Editor editor = sharedPreferences.edit(); local
161 editor.putString(ACTIVE_CONFIGURATION_PREFNAME, getConfigSignature(config));
162 editor.apply();
  /development/samples/ApiDemos/src/com/example/android/apis/content/
ChangedContacts.java 148 SharedPreferences.Editor editor = pref.edit(); local
149 editor.putLong(key, time);
150 editor.commit();
  /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/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMALTEPhone.java 192 // open the shared preferences editor, and write the value.
195 SharedPreferences.Editor editor = sp.edit(); local
196 editor.putString(NETWORK_SELECTION_KEY, nsm.operatorNumeric);
197 editor.putString(NETWORK_SELECTION_NAME_KEY, nsm.operatorAlphaLong);
200 if (! editor.commit()) {
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GSMPhone.java 806 SharedPreferences.Editor editor = sp.edit(); local
807 editor.putString(VM_NUMBER, number);
808 editor.apply();
831 SharedPreferences.Editor editor = sp.edit(); local
832 editor.putString(VM_SIM_IMSI, imsi);
833 editor.apply();
1476 SharedPreferences.Editor editor = sp.edit(); local
1494 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/
ControlPanelEffect.java 161 final SharedPreferences.Editor editor = prefs.edit(); local
169 editor.putBoolean(Key.global_enabled.toString(), isGlobalEnabled);
179 editor.putBoolean(Key.virt_enabled.toString(), isVIEnabled);
180 editor.putInt(Key.virt_strength.toString(), vIStrength);
187 editor.putBoolean(Key.virt_strength_supported.toString(),
203 editor.putBoolean(Key.bb_enabled.toString(), isBBEnabled);
204 editor.putInt(Key.bb_strength.toString(), bBStrength);
269 editor.putInt(Key.eq_level_range.toString() + 0, mEQBandLevelRange[0]);
270 editor.putInt(Key.eq_level_range.toString() + 1, mEQBandLevelRange[1])
509 final SharedPreferences.Editor editor = prefs.edit(); local
563 final SharedPreferences.Editor editor = prefs.edit(); local
983 final SharedPreferences.Editor editor = prefs.edit(); local
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Settings.java 216 final SharedPreferences.Editor editor = prefs.edit(); local
217 editor.remove(PREF_SUPPRESS_LANGUAGE_SWITCH_KEY);
218 editor.putBoolean(PREF_SHOW_LANGUAGE_SWITCH_KEY, !suppressLanguageSwitchKey);
219 editor.apply();
  /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/Gallery2/src/com/android/gallery3d/filtershow/
FilterShowActivity.java 168 final Editor currentEditor) {
442 Editor mCurrentEditor = mEditorPlaceHolder.showEditor(representation.getEditorId());
446 public Editor getEditor(int editorID) {
    [all...]
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
ImageCache.java 243 final DiskLruCache.Editor editor = mDiskLruCache.edit(key); local
244 if (editor != null) {
245 out = editor.newOutputStream(DISK_CACHE_INDEX);
248 editor.commit();
  /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 633 SharedPreferences.Editor editor = local
636 editor.remove(mDevice.getAddress());
638 editor.putInt(mDevice.getAddress(), permissionChoice);
640 editor.commit();

Completed in 1302 milliseconds

1 2 3 4 5 67 8 910