Searched refs:DryRun (Results 1 – 7 of 7) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/Format/ |
| H A D | ContinuationIndenter.h | 62 const AnnotatedLine *Line, bool DryRun); 80 unsigned addTokenToState(LineState &State, bool Newline, bool DryRun, 90 unsigned moveStateToNextToken(LineState &State, bool DryRun, bool Newline); 110 bool DryRun, bool Newline); 115 bool DryRun, bool AllowBreak, bool Newline); 142 bool AllowBreak, bool DryRun, 158 void addTokenOnCurrentLine(LineState &State, bool DryRun, 168 unsigned addTokenOnNewLine(LineState &State, bool DryRun);
|
| H A D | UnwrappedLineFormatter.cpp | 199 const AnnotatedLine *getNextMergedLine(bool DryRun, in getNextMergedLine() argument 213 if (!DryRun) in getNextMergedLine() 1064 unsigned FirstStartColumn, bool DryRun) = 0; 1087 bool formatChildren(LineState &State, bool NewLine, bool DryRun, in formatChildren() argument 1104 BlockFormatter->format(Previous.Children, DryRun, AdditionalIndent, in formatChildren() 1132 if (!DryRun) { in formatChildren() 1139 formatLine(*Child, State.Column + 1, /*FirstStartColumn=*/0, DryRun); in formatChildren() 1140 if (!DryRun) in formatChildren() 1167 unsigned FirstStartColumn, bool DryRun) override { in formatLine() argument 1168 assert(!DryRun); in formatLine() [all …]
|
| H A D | ContinuationIndenter.cpp | 257 bool DryRun) { in getInitialState() argument 294 moveStateToNextToken(State, DryRun, /*Newline=*/false); in getInitialState() 671 bool DryRun, in addTokenToState() argument 696 moveStateToNextToken(State, DryRun, /*Newline=*/false); in addTokenToState() 702 Penalty = addTokenOnNewLine(State, DryRun); in addTokenToState() 704 addTokenOnCurrentLine(State, DryRun, ExtraSpaces); in addTokenToState() 706 return moveStateToNextToken(State, DryRun, Newline) + Penalty; in addTokenToState() 709 void ContinuationIndenter::addTokenOnCurrentLine(LineState &State, bool DryRun, in addTokenOnCurrentLine() argument 797 if (!DryRun) { in addTokenOnCurrentLine() 1036 bool DryRun) { in addTokenOnNewLine() argument [all …]
|
| H A D | FormatToken.cpp | 89 bool DryRun) { in formatAfterToken() argument 142 Penalty += Indenter->addTokenToState(State, NewLine, DryRun, ExtraSpaces); in formatAfterToken() 149 bool DryRun) { in formatFromToken() argument
|
| H A D | UnwrappedLineFormatter.h | 39 bool DryRun = false, int AdditionalIndent = 0,
|
| H A D | FormatToken.h | 951 bool DryRun) { in formatFromToken() argument 959 bool DryRun) { in formatAfterToken() argument 980 bool DryRun) override; 983 bool DryRun) override;
|
| /freebsd/contrib/llvm-project/clang/tools/clang-format/ |
| H A D | ClangFormat.cpp | 141 DryRun("dry-run", variable 147 cl::cat(ClangFormatCategory), cl::aliasopt(DryRun), 507 if (DryRun) { in format()
|