HomeSort by relevance Sort by last modified time
    Searched refs:LastSpace (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Analysis/
CFGPrinter.h 63 unsigned LastSpace = 0;
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/
ContinuationIndenter.h 145 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace,
147 : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace),
169 unsigned LastSpace;
263 if (LastSpace != Other.LastSpace)
264 return LastSpace < Other.LastSpace;
ContinuationIndenter.cpp 274 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 = State.Column
    [all...]

Completed in 250 milliseconds