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), FirstLessLess(0), in ParenState()
177 unsigned NestedBlockIndent; member
273 if (NestedBlockIndent != Other.NestedBlockIndent)
274 return NestedBlockIndent < Other.NestedBlockIndent;
DContinuationIndenter.cpp346 State.Stack.back().NestedBlockIndent = State.Column; in addTokenOnCurrentLine()
412 State.Stack.back().NestedBlockIndent = State.Column; in addTokenOnNewLine()
534 return State.Stack[State.Stack.size() - 2].NestedBlockIndent; in getNewLineColumn()
648 State.Stack.back().NestedBlockIndent = State.Stack.back().Indent; in moveStateToNextToken()
820 NewIndent = State.Stack.back().NestedBlockIndent + Style.IndentWidth; in moveStatePastScopeOpener()
852 unsigned NestedBlockIndent = std::max(State.Stack.back().StartOfFunctionCall, in moveStatePastScopeOpener() local
853 State.Stack.back().NestedBlockIndent); in moveStatePastScopeOpener()
857 State.Stack.back().NestedBlockIndent = NestedBlockIndent; in moveStatePastScopeOpener()
884 unsigned NestedBlockIndent = State.Stack.back().NestedBlockIndent; in moveStateToNewBlock() local
887 NestedBlockIndent + (State.NextToken->is(TT_ObjCBlockLBrace) in moveStateToNewBlock()
[all …]
DUnwrappedLineFormatter.cpp620 llvm::dbgs() << P.Indent << "|" << P.LastSpace << "|" << P.NestedBlockIndent in printLineState()