HomeSort by relevance Sort by last modified time
    Searched defs:Editor (Results 1 - 23 of 23) sorted by null

  /external/clang/include/clang/Rewrite/Frontend/
FixItRewriter.h 60 edit::EditedSource Editor;
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
Editors.java 17 package com.android.notificationstudio.editor;
34 public interface Editor {
38 private static final Map<Integer, Editor> EDITORS = editors();
41 private static Map<Integer, Editor> editors() {
42 Map<Integer, Editor> editors = new HashMap<Integer, Editor>();
69 Editor editor = EDITORS.get(item.getType()); local
70 if (editor == null)
72 Runnable updater = editor.bindEditor(editorView, item, new Runnable()
    [all...]
  /frameworks/base/core/java/android/content/
SharedPreferences.java 26 * Modifications to the preferences must go through an {@link Editor} object
64 * object. All changes you make in an editor are batched, and not copied
68 public interface Editor {
70 * Set a String value in the preferences editor, to be written back once
76 * @return Returns a reference to the same Editor object, so you can
79 Editor putString(String key, String value);
82 * Set a set of String values in the preferences editor, to be written
87 * @return Returns a reference to the same Editor object, so you can
90 Editor putStringSet(String key, Set<String> values);
93 * Set an int value in the preferences editor, to be written back onc
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/editor/
Editor.java 17 package com.android.contacts.editor;
29 public interface Editor {
33 * Called when the given {@link Editor} is requested to be deleted by the user.
35 public void onDeleteRequested(Editor editor);
38 * Called when the given {@link Editor} has a request, for example it
48 // The editor has switched between different representations of the same
54 * Returns whether or not all the fields are empty in this {@link Editor}.
59 * Prepares this editor for the given {@link ValuesDelta}, which
69 * Add a specific {@link EditorListener} to this {@link Editor}
    [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/ARCMigrate/
ObjCMT.cpp 39 llvm::OwningPtr<edit::EditedSource> Editor;
61 Editor.reset(new edit::EditedSource(Context.getSourceManager(),
130 edit::Commit commit(*Consumer.Editor);
132 Consumer.Editor->commit(commit);
136 edit::Commit commit(*Consumer.Editor);
138 Consumer.Editor->commit(commit);
186 Editor->applyRewrites(Rec);
  /external/webkit/Source/WebCore/editing/
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
Editor.cpp 28 #include "Editor.h"
99 VisibleSelection Editor::selectionForCommand(Event* event)
122 EditingBehavior Editor::behavior() const
130 EditorClient* Editor::client() const
138 TextCheckerClient* Editor::textChecker() const
145 void Editor::handleKeyboardEvent(KeyboardEvent* event)
151 void Editor::handleInputMethodKeydown(KeyboardEvent* event)
157 bool Editor::handleTextEvent(TextEvent* event)
182 bool Editor::canEdit() const
187 bool Editor::canEditRichly() cons
    [all...]
  /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/libcore/io/
DiskLruCache.java 67 * entry may have only one editor at one time; if a value is not available to be
77 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
78 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
282 entry.currentEditor = new Editor(entry);
392 * Returns an editor for the entry named {@code key}, or null if another
395 public Editor edit(String key) throws IOException {
399 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
414 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
281 entry.currentEditor = new Editor(entry);
397 * Returns an editor for the entry named {@code key}, or null if another
400 public Editor edit(String key) throws IOException {
404 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
419 Editor editor = new Editor(entry) local
    [all...]
  /frameworks/base/core/java/android/widget/
Editor.java 104 public class Editor {
105 private static final String TAG = "Editor";
190 Editor(TextView textView) {
386 // The default value is true, even when there is no associated Editor
844 // Note this may have to be moved out of the Editor class
    [all...]
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/4/
android.jar 
  /prebuilts/sdk/5/
android.jar 
  /prebuilts/sdk/6/
android.jar 
  /prebuilts/sdk/7/
android.jar 
  /prebuilts/sdk/9/
android.jar 
  /prebuilts/sdk/current/
android.jar 

Completed in 1396 milliseconds