/external/chromium_org/third_party/WebKit/Source/core/editing/ |
D | Editor.cpp | 94 Editor::RevealSelectionScope::RevealSelectionScope(Editor* editor) in RevealSelectionScope() 100 Editor::RevealSelectionScope::~RevealSelectionScope() in ~RevealSelectionScope() 110 VisibleSelection Editor::selectionForCommand(Event* event) in selectionForCommand() 127 EditingBehavior Editor::behavior() const in behavior() 141 EditorClient& Editor::client() const in client() 148 UndoStack* Editor::undoStack() const in undoStack() 155 bool Editor::handleTextEvent(TextEvent* event) in handleTextEvent() 180 bool Editor::canEdit() const in canEdit() 185 bool Editor::canEditRichly() const in canEditRichly() 195 bool Editor::canDHTMLCut() in canDHTMLCut() [all …]
|
D | Editor.h | 60 class Editor FINAL : public NoBaseWillBeGarbageCollectedFinalized<Editor> { 61 WTF_MAKE_NONCOPYABLE(Editor); 63 static PassOwnPtrWillBeRawPtr<Editor> create(LocalFrame&); 64 ~Editor(); 230 RevealSelectionScope(Editor*); 233 Editor* m_editor; 251 explicit Editor(LocalFrame&); 286 inline void Editor::setStartNewKillRingSequence(bool flag) in setStartNewKillRingSequence() 291 inline const VisibleSelection& Editor::mark() const in mark() 296 inline void Editor::setMark(const VisibleSelection& selection) in setMark() [all …]
|
D | EditorKeyBindings.cpp | 37 bool Editor::handleEditingKeyboardEvent(KeyboardEvent* evt) in handleEditingKeyboardEvent() 67 void Editor::handleKeyboardEvent(KeyboardEvent* evt) in handleKeyboardEvent()
|
D | InputMethodController.h | 36 class Editor; variable 109 Editor& editor() const;
|
D | InputMethodController.cpp | 80 inline Editor& InputMethodController::editor() const in editor() 181 Editor::RevealSelectionScope revealSelectionScope(&editor()); in finishComposition() 229 Editor::RevealSelectionScope revealSelectionScope(&editor()); in setComposition() 350 Editor::RevealSelectionScope revealSelectionScope(&editor()); in setCompositionFromExistingText()
|
D | EditorCommand.cpp | 1669 Editor::Command Editor::command(const String& commandName) in command() 1674 Editor::Command Editor::command(const String& commandName, EditorCommandSource source) in command() 1679 bool Editor::executeCommand(const String& commandName) in executeCommand() 1704 bool Editor::executeCommand(const String& commandName, const String& value) in executeCommand() 1721 Editor::Command::Command() in Command() 1726 Editor::Command::Command(const EditorInternalCommand* command, EditorCommandSource source, PassRefP… in Command() 1738 bool Editor::Command::execute(const String& parameter, Event* triggeringEvent) const in execute() 1750 bool Editor::Command::execute(Event* triggeringEvent) const in execute() 1755 bool Editor::Command::isSupported() const in isSupported() 1770 bool Editor::Command::isEnabled(Event* triggeringEvent) const in isEnabled() [all …]
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/content/ |
D | TestSharedPreferences.java | 74 public Editor edit() { in edit() 96 private class TestSharedPreferencesEditor implements Editor { 103 public Editor putString(String key, String value) { in putString() 110 public Editor putInt(String key, int value) { in putInt() 117 public Editor putLong(String key, long value) { in putLong() 124 public Editor putFloat(String key, float value) { in putFloat() 131 public Editor putBoolean(String key, boolean value) { in putBoolean() 138 public Editor remove(String key) { in remove() 144 public Editor clear() { in clear() 176 public Editor putStringSet(String key, Set<String> values) { in putStringSet()
|
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/ |
D | InMemorySharedPreferences.java | 108 public SharedPreferences.Editor edit() { in edit() 125 private class InMemoryEditor implements SharedPreferences.Editor { 133 public SharedPreferences.Editor putString(String key, String value) { in putString() 142 public SharedPreferences.Editor putStringSet(String key, Set<String> values) { in putStringSet() 151 public SharedPreferences.Editor putInt(String key, int value) { in putInt() 160 public SharedPreferences.Editor putLong(String key, long value) { in putLong() 169 public SharedPreferences.Editor putFloat(String key, float value) { in putFloat() 178 public SharedPreferences.Editor putBoolean(String key, boolean value) { in putBoolean() 187 public SharedPreferences.Editor remove(String key) { in remove() 197 public SharedPreferences.Editor clear() { in clear()
|
/external/clang/lib/ARCMigrate/ |
D | ObjCMT.cpp | 92 std::unique_ptr<edit::EditedSource> Editor; member in __anonf83fd5c00111::ObjCMigrateASTConsumer 125 Editor.reset(new edit::EditedSource(Context.getSourceManager(), in Initialize() 229 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 231 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 235 edit::Commit commit(*Consumer.Editor); in VisitObjCMessageExpr() 237 Consumer.Editor->commit(commit); in VisitObjCMessageExpr() 751 edit::Commit commit(*Editor); in migrateProtocolConformance() 754 Editor->commit(commit); in migrateProtocolConformance() 809 edit::Commit commit(*Editor); in migrateNSEnumDecl() 811 Editor->commit(commit); in migrateNSEnumDecl() [all …]
|
/external/clang/lib/Edit/ |
D | Commit.cpp | 38 Commit::Commit(EditedSource &Editor) in Commit() argument 39 : SourceMgr(Editor.getSourceManager()), LangOpts(Editor.getLangOpts()), in Commit() 40 PPRec(Editor.getPPCondDirectiveRecord()), in Commit() 41 Editor(&Editor), IsCommitable(true) { } in Commit() 290 if (!Editor) in canInsertInOffset() 292 return Editor->canInsertInOffset(OrigLoc, Offs); in canInsertInOffset()
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | LocalFrame.h | 45 class Editor; variable 99 Editor& editor() const; 176 const OwnPtrWillBeMember<Editor> m_editor; 219 inline Editor& LocalFrame::editor() const in editor()
|
/external/clang/lib/Rewrite/Frontend/ |
D | FixItRewriter.cpp | 34 Editor(SourceMgr, LangOpts), in FixItRewriter() 83 Editor.applyRewrites(Rec); in WriteFixedFiles() 143 edit::Commit commit(Editor); in HandleDiagnostic() 178 if (!Editor.commit(commit)) { in HandleDiagnostic()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/ |
D | DiskLruCache.java | 306 entry.currentEditor = new Editor(entry); in readJournalLine() 444 public Editor edit(String key) throws IOException { in edit() 448 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException { in edit() 463 Editor editor = new Editor(entry); in edit() 503 private synchronized void completeEdit(Editor editor, boolean success) throws IOException { in completeEdit() 683 public Editor edit() throws IOException { in edit() 717 public final class Editor { class in DiskLruCache 723 private Editor(Entry entry) { in Editor() method in DiskLruCache.Editor 877 private Editor currentEditor;
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | PreferenceManagerTest.java | 5 import android.content.SharedPreferences.Editor; 25 Editor editor = testPrefs.edit(); in shouldProvideDefaultSharedPreferences()
|
/external/clang/include/clang/Edit/ |
D | Commit.h | 51 EditedSource *Editor; variable 59 explicit Commit(EditedSource &Editor); 62 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(nullptr), in SourceMgr()
|
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/ |
D | HttpResponseCache.java | 214 DiskLruCache.Editor editor = null; in put() 243 DiskLruCache.Editor editor = null; in update() 255 private void abortQuietly(DiskLruCache.Editor editor) { in abortQuietly() 337 private final DiskLruCache.Editor editor; 342 public CacheRequestImpl(final DiskLruCache.Editor editor) throws IOException { in CacheRequestImpl() 489 public void writeTo(DiskLruCache.Editor editor) throws IOException { in writeTo()
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | MainMenuActivity.java | 221 SharedPreferences.Editor editor = prefs.edit(); in onResume() 226 SharedPreferences.Editor editor = prefs.edit(); in onResume() 260 SharedPreferences.Editor editor = prefs.edit(); in onResume() 265 SharedPreferences.Editor editor = prefs.edit(); in onResume() 347 SharedPreferences.Editor editor = prefs.edit(); in onCreateDialog()
|
/external/chromium_org/chrome/common/extensions/api/ |
D | _permission_features.json | 315 "8C0B1873FFFB65E4D0F4D772879F7304CEF125C2", // Apps Editor old. 317 "FA0501B579070BB9CBD4FCAEC8CB0EDF22BA2F04", // Apps Editor published. 636 "8C0B1873FFFB65E4D0F4D772879F7304CEF125C2", // Apps Editor old. 637 "FA0501B579070BB9CBD4FCAEC8CB0EDF22BA2F04", // Apps Editor published. 714 "3727DD3E564B6055387425027AD74C58784ACC15", // Editor 942 "3727DD3E564B6055387425027AD74C58784ACC15", // Editor
|
D | _manifest_features.json | 208 "ehibbfinohgbchlgdbfpikodjaojhccn", // Editor 220 "ehibbfinohgbchlgdbfpikodjaojhccn", // Editor
|
/external/chromium_org/third_party/mozc/ |
D | README.chromium | 1 Name: Mozc Japanese Input Method Editor
|
/external/chromium_org/third_party/skia/include/core/ |
D | SkPathRef.h | 42 class Editor { 44 Editor(SkAutoTUnref<SkPathRef>* pathRef, 48 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) } in ~Editor()
|
/external/skia/include/core/ |
D | SkPathRef.h | 41 class Editor { 43 Editor(SkAutoTUnref<SkPathRef>* pathRef, 47 ~Editor() { SkDEBUGCODE(sk_atomic_dec(&fPathRef->fEditorsAttached);) } in ~Editor()
|
/external/clang/tools/clang-format-vs/ClangFormat/ |
D | ClangFormatPackage.cs | 15 using Microsoft.VisualStudio.Editor; 19 using Microsoft.VisualStudio.Text.Editor;
|
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/identity/ |
D | UuidBasedUniqueIdentificationGenerator.java | 43 SharedPreferences.Editor editor = preferences.edit(); in getUniqueId()
|
/external/jhead/ |
D | jhead.c | 160 char * Editor; 161 Editor = getenv("EDITOR"); 162 if (Editor == NULL){ 164 Editor = "notepad"; 166 Editor = "vi"; 169 if (strlen(Editor) > PATH_MAX) ErrFatal("env too long"); 171 sprintf(QuotedPath, "%s \"%s\"",Editor, TempFileName);
|