HomeSort by relevance Sort by last modified time
    Searched defs:Editor (Results 1 - 25 of 38) 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
49 // The editor has switched between different representations of the same
53 // Focus has changed inside the editor.
58 * Returns whether or not all the fields are empty in this {@link Editor}.
63 * Prepares this editor for the given {@link ValuesDelta}, whic
    [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(nullptr),
  /external/skia/src/core/
SkPathRef.cpp 14 SkPathRef::Editor::Editor(SkAutoTUnref<SkPathRef>* pathRef,
  /external/chromium_org/third_party/skia/include/core/
SkPathRef.h 26 * SkPathRef::Editor object. Installing the editor resets the generation ID. It also performs
27 * copy-on-write if the SkPathRef is shared by multiple SkPaths. The caller passes the Editor's
28 * constructor a SkAutoTUnref, which may be updated to point to a new SkPathRef after the editor's
42 class Editor {
44 Editor(SkAutoTUnref<SkPathRef>* pathRef,
48 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
100 * 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.
452 SkDEBUGCODE(int32_t fEditorsAttached;) // assert that only one editor in use at any time.
  /external/chromium_org/third_party/WebKit/Source/core/editing/
Editor.cpp 28 #include "core/editing/Editor.h"
94 Editor::RevealSelectionScope::RevealSelectionScope(Editor* editor)
95 : m_editor(editor)
100 Editor::RevealSelectionScope::~RevealSelectionScope()
110 VisibleSelection Editor::selectionForCommand(Event* event)
127 EditingBehavior Editor::behavior() const
141 EditorClient& Editor::client() const
148 UndoStack* Editor::undoStack() cons
    [all...]
  /external/chromium_org/v8/tools/push-to-trunk/
common_includes.py 362 def Editor(self, args):
365 os.environ["EDITOR"],
410 # Cancel if EDITOR is unset or not executable.
411 if (self._options.requires_editor and (not os.environ.get("EDITOR") or
413 "which", os.environ["EDITOR"]) is None)): # pragma: no cover
414 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.
  /developers/build/prebuilts/gradle/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/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...]
  /developers/samples/android/ui/graphics/DisplayingBitmaps/Application/src/main/java/com/example/android/displayingbitmaps/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...]
  /development/samples/browseable/DisplayingBitmaps/src/com.example.android.displayingbitmaps/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/okhttp/src/main/java/com/squareup/okhttp/internal/
DiskLruCache.java 62 * entry may have only one editor at one time; if a value is not available to be
72 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
73 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
306 entry.currentEditor = new Editor(entry);
441 * Returns an editor for the entry named {@code key}, or null if another
444 public Editor edit(String key) throws IOException {
448 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
463 Editor editor = new Editor(entry) local
    [all...]
  /external/glide/third_party/disklrucache/
disklrucache-2.0.2.jar 
  /external/clang/lib/ARCMigrate/
ObjCMT.cpp 92 std::unique_ptr<edit::EditedSource> Editor;
125 Editor.reset(new edit::EditedSource(Context.getSourceManager(),
229 edit::Commit commit(*Consumer.Editor);
231 Consumer.Editor->commit(commit);
235 edit::Commit commit(*Consumer.Editor);
237 Consumer.Editor->commit(commit);
751 edit::Commit commit(*Editor);
754 Editor->commit(commit);
809 edit::Commit commit(*Editor);
811 Editor->commit(commit)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/CodeWarrior/
Metrowerks_Shell_Suite.py     [all...]
  /frameworks/base/core/java/android/widget/
Editor.java 119 public class Editor {
120 private static final String TAG = "Editor";
209 // The span controller helps monitoring the changes to which the Editor needs to react:
223 Editor(TextView textView) {
463 // The default value is true, even when there is no associated Editor
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 5052 milliseconds

1 2