Home
last modified time | relevance | path

Searched refs:NestedBlockIndent (Results 1 – 3 of 3) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/clang/lib/Format/
H A DContinuationIndenter.h206 NestedBlockIndent(Indent), BreakBeforeClosingBrace(false), in ParenState()
234 unsigned NestedBlockIndent; member
338 if (NestedBlockIndent != Other.NestedBlockIndent)
339 return NestedBlockIndent < Other.NestedBlockIndent;
H A DContinuationIndenter.cpp685 State.Stack.back().NestedBlockIndent = State.Column; in addTokenOnCurrentLine()
774 State.Stack.back().NestedBlockIndent = State.Column; in addTokenOnNewLine()
927 return State.Stack[State.Stack.size() - 2].NestedBlockIndent; in getNewLineColumn()
1105 State.Stack.back().NestedBlockIndent = State.Stack.back().Indent; in moveStateToNextToken()
1114 State.Stack.back().NestedBlockIndent = State.Stack.back().Indent; in moveStateToNextToken()
1122 State.Stack.back().NestedBlockIndent = in moveStateToNextToken()
1307 NestedBlockIndent = std::max(NestedBlockIndent, State.Column + 1); in moveStatePastScopeOpener()
1383 State.Stack.back().NestedBlockIndent = NestedBlockIndent; in moveStatePastScopeOpener()
1438 unsigned NestedBlockIndent = State.Stack.back().NestedBlockIndent; in moveStateToNewBlock() local
1441 NestedBlockIndent + (State.NextToken->is(TT_ObjCBlockLBrace) in moveStateToNewBlock()
[all …]
H A DUnwrappedLineFormatter.cpp675 << P.LastSpace << "|" << P.NestedBlockIndent << " "; in printLineState()