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

1 23 4 5 6 7 8 910

  /packages/apps/Nfc/nxp/src/com/android/nfc/dhimpl/
NativeNfcSecureElement.java 35 SharedPreferences.Editor mPrefsEditor;
  /packages/apps/Phone/src/com/android/phone/sip/
SipSharedPreferences.java 47 SharedPreferences.Editor editor = mPreferences.edit(); local
48 editor.putString(KEY_PRIMARY_ACCOUNT, accountUri);
49 editor.apply();
72 SharedPreferences.Editor editor = mPreferences.edit(); local
73 editor.putInt(KEY_NUMBER_OF_PROFILES, number);
74 editor.apply();
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
TextEditor.java 17 package com.android.notificationstudio.editor;
26 import com.android.notificationstudio.editor.Editors.Editor;
29 public class TextEditor implements Editor {
DropDownEditor.java 17 package com.android.notificationstudio.editor;
29 import com.android.notificationstudio.editor.Editors.Editor;
32 public class DropDownEditor implements Editor {
  /frameworks/base/core/java/android/app/
SharedPreferencesImpl.java 273 public Editor edit() {
275 // requesting an editor. will require some work on the
276 // Editor, but then we should be able to do:
303 public final class EditorImpl implements Editor {
307 public Editor putString(String key, String value) {
313 public Editor putStringSet(String key, Set<String> values) {
320 public Editor putInt(String key, int value) {
326 public Editor putLong(String key, long value) {
332 public Editor putFloat(String key, float value) {
338 public Editor putBoolean(String key, boolean value)
    [all...]
  /external/clang/include/clang/Edit/
Commit.h 50 EditedSource *Editor;
56 explicit Commit(EditedSource &Editor);
59 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(0),
  /external/clang/lib/Edit/
Commit.cpp 38 Commit::Commit(EditedSource &Editor)
39 : SourceMgr(Editor.getSourceManager()), LangOpts(Editor.getLangOpts()),
40 PPRec(Editor.getPPCondDirectiveRecord()),
41 Editor(&Editor), IsCommitable(true) { }
290 if (!Editor)
292 return Editor->canInsertInOffset(OrigLoc, Offs);
  /external/webkit/Source/WebCore/editing/
EditingAllInOne.cpp 40 #include <Editor.cpp>
Editor.h 82 class Editor {
84 Editor(Frame*);
85 ~Editor();
322 // We should make these functions private when their callers in Frame are moved over here to Editor
438 inline void Editor::setStartNewKillRingSequence(bool flag)
443 inline const VisibleSelection& Editor::mark() const
448 inline void Editor::setMark(const VisibleSelection& selection)
453 inline bool Editor::markedTextMatchesAreHighlighted() const
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/gtk/
WebEditorClientGtk.cpp 47 Vector<Editor::Command> commands;
49 Editor::Command command = frame->editor()->command(pendingEditorCommands.at(i).utf8().data());
79 // During RawKeyDown events if an editor command will insert text, defer
90 if (executePendingEditorCommands(frame, pendingEditorCommands, frame->editor()->canEdit())) {
97 if (!frame->editor()->canEdit())
107 frame->editor()->insertText(platformEvent->text(), event);
119 if (frame->editor()->insertText(platformEvent->text(), event))
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PersistentState.java 46 * top text editor, but not of the bottom text editor. You can see the difference
120 SharedPreferences.Editor editor = getPreferences(0).edit(); local
121 editor.putString("text", mSaved.getText().toString());
122 editor.putInt("selection-start", mSaved.getSelectionStart());
123 editor.putInt("selection-end", mSaved.getSelectionEnd());
124 editor.commit();
RedirectGetter.java 77 SharedPreferences.Editor editor = preferences.edit();
78 editor.putString("text", mText.getText().toString());
80 if (editor.commit()) {
  /external/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 60 edit::EditedSource Editor;
  /external/clang/lib/Rewrite/Frontend/
FixItRewriter.cpp 34 Editor(SourceMgr, LangOpts),
83 Editor.applyRewrites(Rec);
143 edit::Commit commit(Editor);
178 if (!Editor.commit(commit)) {
  /external/webkit/Source/WebCore/platform/efl/
ClipboardEfl.cpp 24 #include "Editor.h"
30 PassRefPtr<Clipboard> Editor::newGeneralClipboard(ClipboardAccessPolicy policy, Frame*)
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
DoNotDisturbController.java 58 SharedPreferences.Editor editor = Prefs.edit(mContext); local
59 editor.putBoolean(Prefs.DO_NOT_DISTURB_PREF, value);
60 editor.apply();
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmInitReceiver.java 74 SharedPreferences.Editor editor = prefs.edit(); local
76 editor.putString(SettingsActivity.KEY_VOLUME_BEHAVIOR,
80 editor.putBoolean(PREF_VOLUME_DEF_DONE, true);
81 editor.apply();
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
EditorFlip.java 30 public class EditorFlip extends Editor implements EditorInfo {
EditorRedEye.java 28 * The editor with no slider for filters without UI
30 public class EditorRedEye extends Editor {
EditorRotate.java 30 public class EditorRotate extends Editor implements EditorInfo {
EditorStraighten.java 28 public class EditorStraighten extends Editor implements EditorInfo {
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/util/
DiskLruCache.java 76 * entry may have only one editor at one time; if a value is not available to be
86 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
87 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
391 entry.currentEditor = new Editor(entry);
510 * Returns an editor for the entry named {@code key}, or null if another
513 public Editor edit(String key) throws IOException {
517 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
532 Editor editor = new Editor(entry) local
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 66 * entry may have only one editor at one time; if a value is not available to be
76 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
77 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
287 entry.currentEditor = new Editor(entry);
395 * Returns an editor for the entry named {@code key}, or null if another
398 public Editor edit(String key) throws IOException {
402 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
417 Editor editor = new Editor(entry) local
    [all...]
  /libcore/luni/src/main/java/libcore/io/
DiskLruCache.java 65 * entry may have only one editor at one time; if a value is not available to be
75 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
76 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
292 entry.currentEditor = new Editor(entry);
408 * Returns an editor for the entry named {@code key}, or null if another
411 public Editor edit(String key) throws IOException {
415 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
430 Editor editor = new Editor(entry) local
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/admin/
PolicySerializationTestActivity.java 28 import android.content.SharedPreferences.Editor;
128 SharedPreferences.Editor editor = prefs.edit(); local
129 editor.clear();
130 editor.putBoolean(LOAD_EXPECTED_POLICY_PREFERENCE, false);
131 editor.apply();
161 SharedPreferences.Editor editor = prefs.edit(); local
162 editor.clear();
163 editor.putBoolean(LOAD_EXPECTED_POLICY_PREFERENCE, true)
    [all...]

Completed in 2035 milliseconds

1 23 4 5 6 7 8 910