Home | History | Annotate | Download | only in Edit

Lines Matching refs:Commit

13 #include "clang/Edit/Commit.h"
76 // written by a previous commit for another expansion of the same macro
84 // A commit modified the macro argument 'a' due to the first '(x)'
85 // expansion inside the macro definition, and a subsequent commit tried
87 // second commit will be rejected.
260 bool EditedSource::commit(const Commit &commit) {
261 if (!commit.isCommitable())
274 for (edit::Commit::edit_iterator
275 I = commit.edit_begin(), E = commit.edit_end(); I != E; ++I) {
276 const edit::Commit::Edit &edit = *I;
278 case edit::Commit::Act_Insert:
281 case edit::Commit::Act_InsertFromRange:
286 case edit::Commit::Act_Remove: