Home
last modified time | relevance | path

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

/external/clang/lib/Format/
DContinuationIndenter.h152 NestedBlockIndent(Indent), BreakBeforeClosingBrace(false), in ParenState()
175 unsigned NestedBlockIndent; member
271 if (NestedBlockIndent != Other.NestedBlockIndent)
272 return NestedBlockIndent < Other.NestedBlockIndent;
DContinuationIndenter.cpp403 State.Stack.back().NestedBlockIndent = State.Column; in addTokenOnCurrentLine()
486 State.Stack.back().NestedBlockIndent = State.Column; in addTokenOnNewLine()
621 return State.Stack[State.Stack.size() - 2].NestedBlockIndent; in getNewLineColumn()
757 State.Stack.back().NestedBlockIndent = State.Stack.back().Indent; in moveStateToNextToken()
763 State.Stack.back().NestedBlockIndent = in moveStateToNextToken()
932 unsigned NestedBlockIndent = std::max(State.Stack.back().StartOfFunctionCall, in moveStatePastScopeOpener() local
933 State.Stack.back().NestedBlockIndent); in moveStatePastScopeOpener()
936 NewIndent = State.Stack.back().NestedBlockIndent + Style.IndentWidth; in moveStatePastScopeOpener()
952 NestedBlockIndent = std::max(NestedBlockIndent, State.Column + 1); in moveStatePastScopeOpener()
1008 State.Stack.back().NestedBlockIndent = NestedBlockIndent; in moveStatePastScopeOpener()
[all …]
DUnwrappedLineFormatter.cpp465 llvm::dbgs() << P.Indent << "|" << P.LastSpace << "|" << P.NestedBlockIndent in printLineState()