Searched defs:Editor (Results 1 - 10 of 10) sorted by last modified time

/external/v8/tools/push-to-trunk/
H A Dcommon_includes.py362 def Editor(self, args): member in class:Step
/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/skia/src/core/
H A DSkPathRef.cpp14 SkPathRef::Editor::Editor(SkAutoTUnref<SkPathRef>* pathRef, function in class:SkPathRef::Editor
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java74 * 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
343 entry.currentEditor = new Editor(entry);
446 public Editor edit(String key) throws IOException {
450 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
476 Editor editor = new Editor(entry);
515 private synchronized void completeEdit(Editor editor, boolean success) throws IOException {
789 public Editor edit() throws IOException {
827 public final class Editor { class in class:DiskLruCache
833 private Editor(Entry entry) { method in class:DiskLruCache.Editor
[all...]
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
H A DDiskLruCache.java71 * Every {@link #edit} call must be matched by a call to {@link Editor#commit}
72 * or {@link Editor#abort}. Committing is atomic: a read observes the full set
312 entry.currentEditor = new Editor(entry);
440 public Editor edit(String key) throws IOException {
444 private synchronized Editor edit(String key, long expectedSequenceNumber) throws IOException {
458 Editor editor = new Editor(entry);
501 private synchronized void completeEdit(Editor editor, boolean success) throws IOException {
684 public Editor edit() throws IOException {
705 public final class Editor { class in class:DiskLruCache
710 private Editor(Entry entry) { method in class:DiskLruCache.Editor
[all...]
/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/include/clang/Rewrite/Frontend/
H A DFixItRewriter.h60 edit::EditedSource Editor; member in class:clang::FixItRewriter
/external/clang/lib/ARCMigrate/
H A DObjCMT.cpp95 std::unique_ptr<edit::EditedSource> Editor; member in class:__anon781::ObjCMigrateASTConsumer
129 Editor.reset(new edit::EditedSource(Context.getSourceManager(),
334 edit::Commit commit(*Consumer.Editor);
336 Consumer.Editor->commit(commit);
340 edit::Commit commit(*Consumer.Editor);
342 Consumer.Editor->commit(commit);
346 edit::Commit commit(*Consumer.Editor);
349 Consumer.Editor->commit(commit);
903 edit::Commit commit(*Editor);
906 Editor
[all...]
/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);

Completed in 316 milliseconds