Searched defs:LastSpace (Results 1 - 3 of 3) sorted by relevance
/external/llvm/include/llvm/Analysis/ |
H A D | CFGPrinter.h | 63 unsigned LastSpace = 0; local 69 LastSpace = 0; 76 if (!LastSpace) 77 LastSpace = i; 78 OutStr.insert(LastSpace, "\\l..."); 79 ColNum = i - LastSpace; 80 LastSpace = 0; 86 LastSpace = i;
|
/external/clang/lib/Format/ |
H A D | ContinuationIndenter.h | 149 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace, argument 151 : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace), 171 unsigned LastSpace; member in struct:clang::format::ParenState 269 if (LastSpace != Other.LastSpace) 270 return LastSpace < Other.LastSpace;
|
H A D | ContinuationIndenter.cpp | 329 State.Stack.back().LastSpace = State.Stack.back().VariablePos; 402 State.Stack.back().LastSpace = State.Column; 408 State.Stack.back().LastSpace = State.Column; 418 State.Stack.back().LastSpace = State.Column; 421 State.Stack.back().LastSpace = State.Column; 435 State.Stack.back().LastSpace = State.Column; 516 // Thus, we set LastSpace of the next higher NestingLevel, to which we move 519 State.Stack[State.Stack.size() - 2].LastSpace = 520 std::max(State.Stack.back().LastSpace, State.Stack.back().Indent) + 546 State.Stack.back().LastSpace 929 unsigned LastSpace = State.Stack.back().LastSpace; local [all...] |
Completed in 190 milliseconds