Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DContinuationIndenter.h151 NestedBlockIndent(Indent), BreakBeforeClosingBrace(false), in ParenState()
174 unsigned NestedBlockIndent; member
270 if (NestedBlockIndent != Other.NestedBlockIndent)
271 return NestedBlockIndent < Other.NestedBlockIndent;
DContinuationIndenter.cpp371 State.Stack.back().NestedBlockIndent = State.Column; in addTokenOnCurrentLine()
450 State.Stack.back().NestedBlockIndent = State.Column; in addTokenOnNewLine()
579 return State.Stack[State.Stack.size() - 2].NestedBlockIndent; in getNewLineColumn()
711 State.Stack.back().NestedBlockIndent = State.Stack.back().Indent; in moveStateToNextToken()
717 State.Stack.back().NestedBlockIndent = in moveStateToNextToken()
885 unsigned NestedBlockIndent = std::max(State.Stack.back().StartOfFunctionCall, in moveStatePastScopeOpener() local
886 State.Stack.back().NestedBlockIndent); in moveStatePastScopeOpener()
889 NewIndent = State.Stack.back().NestedBlockIndent + Style.IndentWidth; in moveStatePastScopeOpener()
901 NestedBlockIndent = std::max(NestedBlockIndent, State.Column + 1); in moveStatePastScopeOpener()
957 State.Stack.back().NestedBlockIndent = NestedBlockIndent; in moveStatePastScopeOpener()
[all …]
DUnwrappedLineFormatter.cpp465 llvm::dbgs() << P.Indent << "|" << P.LastSpace << "|" << P.NestedBlockIndent in printLineState()