Searched refs:Editor (Results 1 - 25 of 69) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DEditorKeyBindings.cpp28 #include "core/editing/Editor.h"
37 bool Editor::handleEditingKeyboardEvent(KeyboardEvent* evt)
49 // commands that just insert text if executed via Editor should be treated,
67 void Editor::handleKeyboardEvent(KeyboardEvent* evt)
H A DEditor.cpp28 #include "core/editing/Editor.h"
94 Editor::RevealSelectionScope::RevealSelectionScope(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() const
155 bool Editor::handleTextEvent(TextEvent* event)
180 bool Editor
728 Editor::Editor(LocalFrame& frame) function in class:blink::Editor
[all...]
H A DEditor.h60 class Editor FINAL : public NoBaseWillBeGarbageCollectedFinalized<Editor> {
61 WTF_MAKE_NONCOPYABLE(Editor);
63 static PassOwnPtrWillBeRawPtr<Editor> create(LocalFrame&);
64 ~Editor();
157 // |Editor::executeCommand| is implementation of |WebFrame::executeCommand|
230 RevealSelectionScope(Editor*);
233 Editor* m_editor;
251 explicit Editor(LocalFrame&);
286 inline void Editor
[all...]
H A DInputMethodController.h36 class Editor;
109 Editor& editor() const;
H A DInputMethodController.cpp35 #include "core/editing/Editor.h"
80 inline Editor& InputMethodController::editor() const
181 Editor::RevealSelectionScope revealSelectionScope(&editor());
229 Editor::RevealSelectionScope revealSelectionScope(&editor());
350 Editor::RevealSelectionScope revealSelectionScope(&editor());
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
H A DInMemorySharedPreferences.java108 public SharedPreferences.Editor edit() {
125 private class InMemoryEditor implements SharedPreferences.Editor {
133 public SharedPreferences.Editor putString(String key, String value) {
142 public SharedPreferences.Editor putStringSet(String key, Set<String> values) {
151 public SharedPreferences.Editor putInt(String key, int value) {
160 public SharedPreferences.Editor putLong(String key, long value) {
169 public SharedPreferences.Editor putFloat(String key, float value) {
178 public SharedPreferences.Editor putBoolean(String key, boolean value) {
187 public SharedPreferences.Editor remove(String key) {
197 public SharedPreferences.Editor clea
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/
H A DTestSharedPreferences.java74 public Editor edit() {
96 private class TestSharedPreferencesEditor implements Editor {
103 public Editor putString(String key, String value) {
110 public Editor putInt(String key, int value) {
117 public Editor putLong(String key, long value) {
124 public Editor putFloat(String key, float value) {
131 public Editor putBoolean(String key, boolean value) {
138 public Editor remove(String key) {
144 public Editor clear() {
176 public Editor putStringSe
[all...]
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DPreferenceManagerTest.java5 import android.content.SharedPreferences.Editor;
25 Editor editor = testPrefs.edit();
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DLocalFrame.h45 class Editor;
99 Editor& editor() const;
176 const OwnPtrWillBeMember<Editor> m_editor;
219 inline Editor& LocalFrame::editor() const
/external/clang/include/clang/Edit/
H A DCommit.h51 EditedSource *Editor; member in class:clang::edit::Commit
59 explicit Commit(EditedSource &Editor);
62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(nullptr),
/external/clang/lib/Edit/
H A DCommit.cpp38 Commit::Commit(EditedSource &Editor) argument
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/clang/lib/ARCMigrate/
H A DObjCMT.cpp92 std::unique_ptr<edit::EditedSource> Editor; member in class:__anon17684::ObjCMigrateASTConsumer
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
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/identity/
H A DUuidBasedUniqueIdentificationGenerator.java43 SharedPreferences.Editor editor = preferences.edit();
/external/clang/include/clang/Rewrite/Frontend/
H A DFixItRewriter.h60 edit::EditedSource Editor; member in class:clang::FixItRewriter
/external/clang/lib/Rewrite/Frontend/
H A DFixItRewriter.cpp34 Editor(SourceMgr, LangOpts),
83 Editor.applyRewrites(Rec);
143 edit::Commit commit(Editor);
178 if (!Editor.commit(commit)) {
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java72 * 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);
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);
503 private synchronized void completeEdit(Editor editor, boolean success) throws IOException {
683 public Editor edit() throws IOException {
717 public final class Editor { class in class:DiskLruCache
723 private Editor(Entry entry) { method in class:DiskLruCache.Editor
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHttpResponseCache.java214 DiskLruCache.Editor editor = null;
243 DiskLruCache.Editor editor = null;
255 private void abortQuietly(DiskLruCache.Editor editor) {
337 private final DiskLruCache.Editor editor;
342 public CacheRequestImpl(final DiskLruCache.Editor editor) throws IOException {
489 public void writeTo(DiskLruCache.Editor editor) throws IOException {
/external/clang/tools/clang-format-vs/ClangFormat/
H A DClangFormatPackage.cs15 using Microsoft.VisualStudio.Editor;
19 using Microsoft.VisualStudio.Text.Editor;
/external/replicaisland/src/com/replica/replicaisland/
H A DSetPreferencesActivity.java63 SharedPreferences.Editor editor = prefs.edit();
H A DMainMenuActivity.java221 SharedPreferences.Editor editor = prefs.edit();
226 SharedPreferences.Editor editor = prefs.edit();
260 SharedPreferences.Editor editor = prefs.edit();
265 SharedPreferences.Editor editor = prefs.edit();
347 SharedPreferences.Editor editor = prefs.edit();
/external/chromium_org/third_party/skia/include/core/
H A DSkPathRef.h26 * 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
42 class Editor { class in class:SkPathRef
44 Editor(SkAutoTUnref<SkPathRef>* pathRef,
48 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
100 * Gets the path ref that is wrapped in the Editor.
/external/skia/include/core/
H A DSkPathRef.h25 * 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
41 class Editor { class in class:SkPathRef
43 Editor(SkAutoTUnref<SkPathRef>* pathRef,
47 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) }
99 * Gets the path ref that is wrapped in the Editor.
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwGeolocationPermissions.java65 SharedPreferences.Editor editor = null;
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/accessibility/
H A DFontSizePrefs.java135 SharedPreferences.Editor sharedPreferencesEditor = mSharedPreferences.edit();
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/sync/
H A DDelayedSyncController.java78 SharedPreferences.Editor editor = PreferenceManager.getDefaultSharedPreferences(ctx).edit();

Completed in 1050 milliseconds

123