Searched refs:LastSpace (Results 1 - 3 of 3) sorted by relevance

/external/llvm/include/llvm/Analysis/
H A DCFGPrinter.h63 unsigned LastSpace = 0; local
69 LastSpace = 0;
75 if (LastSpace) {
76 OutStr.insert(LastSpace, "\\l...");
77 ColNum = i - LastSpace;
78 LastSpace = 0;
86 LastSpace = i;
/external/clang/lib/Format/
H A DContinuationIndenter.h145 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace, argument
147 : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace),
169 unsigned LastSpace; member in struct:clang::format::ParenState
263 if (LastSpace != Other.LastSpace)
264 return LastSpace < Other.LastSpace;
H A DContinuationIndenter.cpp274 State.Stack.back().LastSpace = State.Stack.back().VariablePos;
308 State.Stack.back().LastSpace = State.Column;
312 State.Stack.back().LastSpace = State.Column;
323 State.Stack.back().LastSpace = State.Column;
326 State.Stack.back().LastSpace = State.Column;
340 State.Stack.back().LastSpace = State.Column;
400 // Thus, we set LastSpace of the next higher NestingLevel, to which we move
403 State.Stack[State.Stack.size() - 2].LastSpace =
404 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) +
427 State.Stack.back().LastSpace
[all...]

Completed in 590 milliseconds