Searched refs:mustBreak (Results 1 – 7 of 7) sorted by relevance
/external/google-java-format/core/src/main/java/com/google/googlejavaformat/ |
D | Doc.java | 67 final boolean mustBreak; field in Doc.State 69 State(int lastIndent, int indent, int column, boolean mustBreak) { in State() argument 73 this.mustBreak = mustBreak; in State() 81 return new State(lastIndent, indent, column, mustBreak); in withColumn() 84 State withMustBreak(boolean mustBreak) { in withMustBreak() argument 85 return new State(lastIndent, indent, column, mustBreak); in withMustBreak() 94 .add("mustBreak", mustBreak) in toString() 313 || state.mustBreak in computeBreakAndSplit()
|
/external/clang/lib/Format/ |
D | ContinuationIndenter.h | 57 bool mustBreak(const LineState &State);
|
D | UnwrappedLineFormatter.cpp | 589 Indenter->mustBreak(State) || in formatLine() 751 if (!NewLine && Indenter->mustBreak(PreviousNode->State)) in addNextStateToQueue()
|
D | ContinuationIndenter.cpp | 142 bool ContinuationIndenter::mustBreak(const LineState &State) { in mustBreak() function in clang::format::ContinuationIndenter
|
/external/llvm-project/clang/lib/Format/ |
D | ContinuationIndenter.h | 74 bool mustBreak(const LineState &State);
|
D | UnwrappedLineFormatter.cpp | 848 Indenter->mustBreak(State) || in formatLine() 1016 if (!NewLine && Indenter->mustBreak(PreviousNode->State)) in addNextStateToQueue()
|
D | ContinuationIndenter.cpp | 329 bool ContinuationIndenter::mustBreak(const LineState &State) { in mustBreak() function in clang::format::ContinuationIndenter
|