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

1 2

  /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
78 * @return Returns a reference to the same Editor object, so you can
81 Editor putString(String key, String value);
84 * Set a set of String values in the preferences editor, to be written
91 * @return Returns a reference to the same Editor object, so you can
94 Editor putStringSet(String key, Set<String> values);
97 * 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 41 OwningPtr<edit::EditedSource> Editor;
63 Editor.reset(new edit::EditedSource(Context.getSourceManager(),
135 edit::Commit commit(*Consumer.Editor);
137 Consumer.Editor->commit(commit);
141 edit::Commit commit(*Consumer.Editor);
143 Consumer.Editor->commit(commit);
208 Editor->applyRewrites(Rec);
  /external/skia/src/core/
SkPathRef.h 24 * SkPathRef::Editor object. Installing the editor resets the generation ID. It also performs
25 * copy-on-write if the SkPathRef is shared by multipls SkPaths. The caller passes the Editor's
26 * constructor a SkAutoTUnref, which may be updated to point to a new SkPathRef after the editor's
71 class Editor {
73 Editor(PR_CONTAINER* pathRef,
88 ~Editor() { SkDEBUGCODE_X(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
138 * Gets the path ref that is wrapped in the Editor.
595 SkDEBUGCODE_X(int32_t fEditorsAttached;) // assert that only one editor in use at any time.
  /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...]
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
Editor.java 45 public class Editor implements OnSeekBarChangeListener, SwapButton.SwapButtonListener {
54 private final String LOGTAG = "Editor";
74 protected Editor(int id) {
  /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...]
  /frameworks/base/core/java/android/widget/
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...]
  /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/18/
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 

Completed in 731 milliseconds

1 2