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

1 2 3 4 5 6 7 8910

  /frameworks/base/core/java/android/widget/
TextView.java 143 * is a complete text editor, however the basic class is configured to not
559 // Although these fields are specific to editable text, they are not added to Editor because
562 // These four fields, could be moved to Editor, since we know their default values and we
563 // could condition the creation of the Editor to a non standard value. This is however
573 * EditText specific data, created on demand when one of the Editor fields is used.
576 private Editor mEditor;
591 * performed on the editor.
    [all...]
Editor.java 108 public class Editor {
109 private static final String TAG = "Editor";
195 Editor(TextView textView) {
419 // The default value is true, even when there is no associated Editor
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
TabletStatusBar.java 744 SharedPreferences.Editor editor = Prefs.edit(mContext);
745 editor.putBoolean(Prefs.DO_NOT_DISTURB_PREF, false);
746 editor.apply();
    [all...]
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 32 import android.content.SharedPreferences.Editor;
410 Editor ed = mPreferences.edit();
    [all...]
MusicUtils.java 29 import android.content.SharedPreferences.Editor;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
AndouKun.java 83 private SharedPreferences.Editor mPrefsEditor;
  /frameworks/base/core/java/android/webkit/
WebSettingsClassic.java 219 SharedPreferences.Editor editor = mContext
222 editor.putInt(DOUBLE_TAP_TOAST_COUNT,
224 editor.commit();
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/
PhoneBase.java 395 SharedPreferences.Editor editor = sp.edit(); local
396 editor.putBoolean(DNS_SERVER_CHECK_DISABLED_KEY, b);
397 editor.apply();
    [all...]
  /hardware/ti/wpan/tools/FM/FmTxApp/src/com/ti/fmtxapp/
FmTx.java 1378 SharedPreferences.Editor editor = fmTxPreferences.edit(); local
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
StopwatchFragment.java 692 SharedPreferences.Editor editor = prefs.edit(); local
693 editor.putLong (Stopwatches.PREF_START_TIME, mStartTime);
694 editor.putLong (Stopwatches.PREF_ACCUM_TIME, mAccumulatedTime);
695 editor.putInt (Stopwatches.PREF_STATE, mState);
699 editor.putInt (Stopwatches.PREF_LAP_NUM, laps.length);
702 editor.putLong (key, laps[i]);
707 editor.putLong(Stopwatches.NOTIF_CLOCK_BASE, mStartTime-mAccumulatedTime);
708 editor.putLong(Stopwatches.NOTIF_CLOCK_ELAPSED, -1);
709 editor.putBoolean(Stopwatches.NOTIF_CLOCK_RUNNING, true)
    [all...]
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
UpdateHandler.java 152 final SharedPreferences.Editor editor = prefs.edit(); local
153 editor.putInt(DOWNLOAD_OVER_METERED_SETTING_PREFS_KEY, shouldDownloadOverMetered
155 editor.apply();
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebHTMLView.mm 86 #import <WebCore/Editor.h>
903 coreFrame->editor()->pasteAsFragment(core(fragment), [self _canSmartReplaceWithPasteboard:pasteboard], false);
    [all...]
WebView.mm 122 #import <WebCore/Editor.h>
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CDMAPhone.java 1506 SharedPreferences.Editor editor = sp.edit(); local
    [all...]
  /packages/apps/Calendar/tests/src/com/android/calendar/alerts/
AlertServiceTest.java 148 public Editor edit() {
    [all...]
  /packages/inputmethods/OpenWnn/src/jp/co/omronsoft/openwnn/JAJP/
DefaultSoftKeyboardJAJP.java 309 private SharedPreferences.Editor mPrefEditor = null;
    [all...]
  /packages/apps/Nfc/src/com/android/nfc/
NfcService.java 233 private SharedPreferences.Editor mPrefsEditor;
    [all...]
  /external/webkit/Source/WebCore/dom/
Document.cpp 58 #include "Editor.h"
335 return frame->editor()->shouldBeginEditing(rangeOfContents(root).get());
    [all...]
  /external/webkit/Source/WebCore/
Android.mk 234 editing/Editor.cpp \
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
PhoneStatusBar.java     [all...]
  /hardware/ti/wpan/tools/FM/FmRxApp/src/com/ti/fmrxapp/
FmRxApp.java 1355 SharedPreferences.Editor editor = fmConfigPreferences.edit(); local
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/mac/
WKView.mm 381 // Map selectors into Editor command names.
382 // This is not needed for any selectors that have the same name as the Editor command.
409 // No need to capitalize the command name since Editor command names are
696 // Next, handle editor commands. Start by returning YES for anything that is not an editor command.
699 if (!Editor::commandIsSupportedFromMenuOrKeyBinding(commandName))
    [all...]
  /external/webkit/Source/WebKit/gtk/webkit/
webkitwebview.cpp 49 #include "Editor.h"
401 IntRect firstRect = frame->editor()->firstRectForRange(selection->selection().firstRange().get());
835 Editor* editor = webView->priv->corePage->focusController()->focusedOrMainFrame()->editor(); local
836 result = result || editor->canPaste() || editor->canDHTMLPaste();
837 editor->paste();
852 if (focusedFrame && focusedFrame->editor()->canEdit()) {
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
Launcher.java     [all...]
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaProvider.java 524 SharedPreferences.Editor e = prefs.edit();
    [all...]

Completed in 1135 milliseconds

1 2 3 4 5 6 7 8910