HomeSort by relevance Sort by last modified time
    Searched defs:Editor (Results 1 - 25 of 32) 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/chromium_org/third_party/WebKit/Source/core/editing/
Editor.h 65 class Editor {
66 WTF_MAKE_NONCOPYABLE(Editor);
68 static PassOwnPtr<Editor> create(Frame&);
69 ~Editor();
236 RevealSelectionScope(Editor*);
239 Editor* m_editor;
258 explicit Editor(Frame&);
287 inline void Editor::setStartNewKillRingSequence(bool flag)
292 inline const VisibleSelection& Editor::mark() const
297 inline void Editor::setMark(const VisibleSelection& selection
    [all...]
Editor.cpp 28 #include "core/editing/Editor.h"
95 Editor::RevealSelectionScope::RevealSelectionScope(Editor* editor)
96 : m_editor(editor)
101 Editor::RevealSelectionScope::~RevealSelectionScope()
111 VisibleSelection Editor::selectionForCommand(Event* event)
128 EditingBehavior Editor::behavior() const
142 EditorClient& Editor::client() const
149 UndoStack* Editor::undoStack() cons
    [all...]
  /external/chromium_org/third_party/skia/src/core/
SkPathRef.cpp 14 SkPathRef::Editor::Editor(SkAutoTUnref<SkPathRef>* pathRef,
  /external/clang/include/clang/Edit/
Commit.h 51 EditedSource *Editor;
59 explicit Commit(EditedSource &Editor);
62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(0),
  /external/skia/src/core/
SkPathRef.cpp 14 SkPathRef::Editor::Editor(SkAutoTUnref<SkPathRef>* pathRef,
  /external/chromium_org/third_party/skia/include/core/
SkPathRef.h 25 * SkPathRef::Editor object. Installing the editor resets the generation ID. It also performs
26 * copy-on-write if the SkPathRef is shared by multiple SkPaths. The caller passes the Editor's
27 * constructor a SkAutoTUnref, which may be updated to point to a new SkPathRef after the editor's
41 class Editor {
43 Editor(SkAutoTUnref<SkPathRef>* pathRef,
47 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
99 * Gets the path ref that is wrapped in the Editor.
456 SkDEBUGCODE(int32_t fEditorsAttached;) // assert that only one editor in use at any time.
  /external/skia/include/core/
SkPathRef.h 25 * SkPathRef::Editor object. Installing the editor resets the generation ID. It also performs
26 * copy-on-write if the SkPathRef is shared by multiple SkPaths. The caller passes the Editor's
27 * constructor a SkAutoTUnref, which may be updated to point to a new SkPathRef after the editor's
41 class Editor {
43 Editor(SkAutoTUnref<SkPathRef>* pathRef,
47 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
99 * Gets the path ref that is wrapped in the Editor.
456 SkDEBUGCODE(int32_t fEditorsAttached;) // assert that only one editor in use at any time.
  /external/chromium_org/v8/tools/push-to-trunk/
common_includes.py 290 def Editor(self, args):
292 return self._side_effect_handler.Command(os.environ["EDITOR"], args,
350 # Cancel if EDITOR is unset or not executable.
351 if (not self.IsForced() and (not os.environ.get("EDITOR") or
352 Command("which", os.environ["EDITOR"]) is None)):
353 self.Die("Please set your EDITOR environment variable, you'll need it.")
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/editors/
Editor.java 48 public class Editor implements OnSeekBarChangeListener, SwapButton.SwapButtonListener {
57 private final String LOGTAG = "Editor";
78 protected Editor(int id) {
248 * This is called in response to a click to apply and leave the editor.
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 54 OwningPtr<edit::EditedSource> Editor;
81 Editor.reset(new edit::EditedSource(Context.getSourceManager(),
157 edit::Commit commit(*Consumer.Editor);
159 Consumer.Editor->commit(commit);
163 edit::Commit commit(*Consumer.Editor);
165 Consumer.Editor->commit(commit);
298 edit::Commit commit(*Editor);
300 Editor->commit(commit);
514 edit::Commit commit(*Editor);
517 Editor->commit(commit)
    [all...]
  /development/samples/training/bitmapfun/BitmapFun/src/main/java/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 64 * entry may have only one editor at one time; if a value is not available to be
74 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
75 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
306 entry.currentEditor = new Editor(entry);
442 * Returns an editor for the entry named {@code key}, or null if another
445 public Editor edit(String key) throws IOException {
449 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
464 Editor editor = new Editor(entry) local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Metrowerks_Shell_Suite.py     [all...]
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
PrintJobConfigActivity.java 178 private Editor mEditor;
236 mEditor = new Editor();
535 mEditor.showUi(Editor.UI_ERROR, new Runnable() {
620 mEditor.showUi(Editor.UI_ERROR, null);
641 mEditor.showUi(Editor.UI_ERROR, new Runnable() {
774 mEditor.showUi(Editor.UI_EDITING_PRINT_JOB,
    [all...]
  /frameworks/base/core/java/android/widget/
Editor.java 115 public class Editor {
116 private static final String TAG = "Editor";
196 // The span controller helps monitoring the changes to which the Editor needs to react:
208 Editor(TextView textView) {
432 // 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 

Completed in 2387 milliseconds

1 2