Searched defs:Editor (Results 1 - 7 of 7) sorted by relevance

/external/clang/include/clang/Rewrite/Frontend/
H A DFixItRewriter.h60 edit::EditedSource Editor; member in class:clang::FixItRewriter
/external/clang/include/clang/Edit/
H A DCommit.h50 EditedSource *Editor; member in class:clang::edit::Commit
56 explicit Commit(EditedSource &Editor);
59 : SourceMgr(SM), LangOpts(LangOpts), PPRec(PPRec), Editor(0),
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp39 llvm::OwningPtr<edit::EditedSource> Editor; member in class:__anon3446::ObjCMigrateASTConsumer
61 Editor.reset(new edit::EditedSource(Context.getSourceManager(),
130 edit::Commit commit(*Consumer.Editor);
132 Consumer.Editor->commit(commit);
136 edit::Commit commit(*Consumer.Editor);
138 Consumer.Editor->commit(commit);
186 Editor->applyRewrites(Rec);
/external/clang/lib/Edit/
H A DCommit.cpp38 Commit::Commit(EditedSource &Editor) argument
39 : SourceMgr(Editor.getSourceManager()), LangOpts(Editor.getLangOpts()),
40 PPRec(Editor.getPreprocessingRecord()),
41 Editor(&Editor), IsCommitable(true) { }
290 if (!Editor)
292 return Editor->canInsertInOffset(OrigLoc, Offs);
/external/webkit/Source/WebCore/editing/
H A DEditor.h82 class Editor { class in namespace:WebCore
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
H A DEditor.cpp28 #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
1046 Editor::Editor(Frame* frame) function in class:WebCore::Editor
[all...]
/external/okhttp/src/main/java/libcore/io/
H A DDiskLruCache.java77 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
78 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
282 entry.currentEditor = new Editor(entry);
395 public Editor edit(String key) throws IOException {
399 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
414 Editor editor = new Editor(entry);
447 private synchronized void completeEdit(Editor editor, boolean success) throws IOException {
627 public Editor edit() throws IOException {
655 public final class Editor { class in class:DiskLruCache
659 private Editor(Entry entry) { method in class:DiskLruCache.Editor
[all...]

Completed in 1786 milliseconds