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

1 2 34 5 6 7

  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebDragClient.mm 44 #import <WebCore/Editor.h>
  /packages/apps/Protips/src/com/android/protips/
ProtipWidget.java 125 SharedPreferences.Editor pref = context.getSharedPreferences(PREFS_NAME, 0).edit();
138 SharedPreferences.Editor pref = context.getSharedPreferences(PREFS_NAME, 0).edit();
  /external/webkit/Source/WebCore/editing/
EditorCommand.cpp 29 #include "Editor.h"
87 // Related to Editor::selectionForCommand.
105 frame->editor()->applyStyleToSelection(style, action);
109 frame->editor()->applyStyle(style);
131 // This function must use Editor::selectionHasStyle to determine the current style but we cannot fix this
136 RefPtr<EditingStyle> selectionStyle = frame->editor()->selectionStartStyle();
165 if (frame->editor()->behavior().shouldToggleStyleBasedOnStartOfSelection())
166 styleIsPresent = frame->editor()->selectionStartHasStyle(propertyID, onValue);
168 styleIsPresent = frame->editor()->selectionHasStyle(propertyID, onValue) == TrueTriState;
181 frame->editor()->applyParagraphStyleToSelection(style.get(), action)
    [all...]
SpellingCorrectionController.cpp 291 m_frame->editor()->markAllMisspellingsAndBadGrammarInRanges(Editor::MarkSpelling | Editor::ShowCorrectionPanel, adjacentWords.toNormalizedRange().get(), 0);
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 492 core(webView)->focusController()->focusedOrMainFrame()->editor()->command(name).execute(value);
500 return core(webView)->focusController()->focusedOrMainFrame()->editor()->command(name).isEnabled();
512 Editor* editor = frame->editor();
513 if (!editor)
515 if (!editor->canEdit() && !editor->hasComposition())
521 editor->setComposition(compositionString, underlines, start, end);
532 Editor* editor = frame->editor()
    [all...]
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/DeskClock/src/com/android/deskclock/
Alarms.java 458 final SharedPreferences.Editor ed = prefs.edit();
501 final SharedPreferences.Editor ed = prefs.edit();
514 final SharedPreferences.Editor ed = prefs.edit();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/backup/
BackupTestActivity.java 198 SharedPreferences.Editor editor = prefs.edit(); local
199 editor.putInt(INT_PREF, (random.nextInt(100) + 1));
200 editor.putBoolean(BOOL_PREF, random.nextBoolean());
201 editor.commit();
206 SharedPreferences.Editor editor = prefs.edit(); local
207 editor.putFloat(FLOAT_PREF, random.nextFloat());
208 editor.putLong(LONG_PREF, random.nextLong());
209 editor.putString(STRING_PREF, "Random number: " + (random.nextInt(100) + 1))
    [all...]
  /external/webkit/Source/WebKit/mac/DefaultDelegates/
WebDefaultContextMenuDelegate.mm 46 #import <WebCore/Editor.h>
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactBrowseListFragment.java 28 import android.content.SharedPreferences.Editor;
659 Editor editor = mPrefs.edit(); local
661 editor.remove(getPersistentSelectionKey());
663 editor.putString(getPersistentSelectionKey(), contactUri.toString());
665 editor.apply();
  /packages/apps/Mms/src/com/android/mms/util/
Recycler.java 172 SharedPreferences.Editor editPrefs =
312 SharedPreferences.Editor editPrefs =
  /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 190 // open the shared preferences editor, and write the value.
193 SharedPreferences.Editor editor = sp.edit(); local
194 editor.putString(NETWORK_SELECTION_KEY, nsm.operatorNumeric);
195 editor.putString(NETWORK_SELECTION_NAME_KEY, nsm.operatorAlphaLong);
198 if (! editor.commit()) {
  /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/activities/
ConfirmAddDetailActivity.java 20 import com.android.contacts.editor.Editor;
21 import com.android.contacts.editor.ViewIdGenerator;
258 // Setup "header" (containing contact info) to save the detail and then go to the editor
674 * Rebuild the editor to match our underlying {@link #mEntityDeltaList} object.
693 // Otherwise display an editor that allows the user to add the data to this raw contact.
719 if (view instanceof Editor) {
720 Editor editor = (Editor) view local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
ContactEditorUtils.java 17 package com.android.contacts.editor;
119 final SharedPreferences.Editor editor = mPrefs.edit() local
127 editor.putString(KEY_KNOWN_ACCOUNTS, "");
128 editor.putString(KEY_DEFAULT_ACCOUNT, "");
130 editor.putString(KEY_KNOWN_ACCOUNTS,
132 editor.putString(KEY_DEFAULT_ACCOUNT, defaultAccount.stringify());
134 editor.apply();
195 * @return true if the contact editor should show the "accounts changed" notification, that is:
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputTestsBase.java 97 // but we'd have to dispatch types on editor.put...() functions
102 final SharedPreferences.Editor editor = prefs.edit(); local
103 editor.putBoolean(key, value);
104 editor.commit();
  /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...]
  /packages/apps/Browser/src/com/android/browser/
BrowserSettings.java 23 import android.content.SharedPreferences.Editor;
449 Editor edit = mPrefs.edit();
    [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();

Completed in 512 milliseconds

1 2 34 5 6 7