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

  /external/llvm/include/llvm/Analysis/
CFGPrinter.h 63 unsigned LastSpace = 0;
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/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
CFGPrinter.h 92 unsigned LastSpace = 0;
98 LastSpace = 0;
105 if (!LastSpace)
106 LastSpace = i;
107 OutStr.insert(LastSpace, "\\l...");
108 ColNum = i - LastSpace;
109 LastSpace = 0;
115 LastSpace = i;
  /external/clang/lib/Format/
ContinuationIndenter.h 149 ParenState(unsigned Indent, unsigned IndentLevel, unsigned LastSpace,
151 : Indent(Indent), IndentLevel(IndentLevel), LastSpace(LastSpace),
171 unsigned LastSpace;
269 if (LastSpace != Other.LastSpace)
270 return LastSpace < Other.LastSpace;
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 = State.Column
    [all...]

Completed in 195 milliseconds