Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Format/
H A DContinuationIndenter.h201 NestedBlockIndent(Indent), IsAligned(false), in ParenState()
233 unsigned NestedBlockIndent; member
363 if (NestedBlockIndent != Other.NestedBlockIndent)
364 return NestedBlockIndent < Other.NestedBlockIndent;
H A DContinuationIndenter.cpp991 CurrentState.NestedBlockIndent = State.Column; in addTokenOnCurrentLine()
1100 CurrentState.NestedBlockIndent = State.Column; in addTokenOnNewLine()
1376 return State.Stack[State.Stack.size() - 2].NestedBlockIndent; in getNewLineColumn()
1680 CurrentState.NestedBlockIndent = CurrentState.Indent; in moveStateToNextToken()
1695 CurrentState.NestedBlockIndent = CurrentState.Indent; in moveStateToNextToken()
1706 CurrentState.NestedBlockIndent = State.Column + Current.ColumnWidth + 1; in moveStateToNextToken()
1711 CurrentState.NestedBlockIndent = State.Column; in moveStateToNextToken()
1952 unsigned NestedBlockIndent = std::max(CurrentState.StartOfFunctionCall, in moveStatePastScopeOpener() local
1953 CurrentState.NestedBlockIndent); in moveStatePastScopeOpener()
1958 std::min(State.Column, CurrentState.NestedBlockIndent); in moveStatePastScopeOpener()
[all …]
H A DUnwrappedLineFormatter.cpp1044 << P.LastSpace << "|" << P.NestedBlockIndent << " "; in printLineState()