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

  /external/clang/lib/Format/
WhitespaceManager.h 50 unsigned IndentLevel, unsigned Spaces,
62 /// Inserts \p PreviousPostfix, \p Newlines, \p Spaces and \p CurrentPrefix
66 /// Note: \p Spaces can be negative to retain information about initial
69 /// alignment here. In all other cases negative \p Spaces will be truncated to
72 /// When \p InPPDirective is true, escaped newlines are inserted. \p Spaces is
79 int Spaces);
103 /// \p PreviousLinePostfix, \p NewlinesBefore line breaks, \p Spaces spaces
109 unsigned IndentLevel, int Spaces, unsigned StartOfTokenColumn,
135 // The number of spaces in front of the token or broken part of the token
    [all...]
WhitespaceManager.cpp 30 unsigned IndentLevel, int Spaces, unsigned StartOfTokenColumn,
41 Spaces(Spaces), IsTrailingComment(false), TokenLength(0),
51 unsigned IndentLevel, unsigned Spaces,
58 Change(true, Tok.WhitespaceRange, IndentLevel, Spaces, StartOfTokenColumn,
69 /*Spaces=*/0, Tok.OriginalColumn, Tok.NewlinesBefore, "", "",
77 unsigned Newlines, unsigned IndentLevel, int Spaces) {
83 IndentLevel, Spaces, std::max(0, Spaces), Newlines, PreviousPostfix,
165 // spaces it has to be shifted, so the rest of the changes on the line ar
    [all...]
ContinuationIndenter.cpp 311 unsigned Spaces = Current.SpacesRequiredBefore + ExtraSpaces;
315 Spaces, State.Column + Spaces);
322 State.Column + Spaces + Current.ColumnWidth)
328 State.Stack.back().ColonPos = State.Column + Spaces + Current.ColumnWidth;
343 State.Stack.back().Indent = State.Column + Spaces;
364 State.Column += Spaces;
    [all...]
  /external/clang/unittests/Format/
FormatTest.cpp     [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 307 unsigned Spaces = 0;
314 Spaces += (P % 8) == 0 ? 2 : 1;
317 while (Spaces--)
325 Spaces += 2;
  /external/llvm/lib/Support/
raw_ostream.cpp 458 /// indent - Insert 'NumSpaces' spaces.
460 static const char Spaces[] = " "
465 if (NumSpaces < array_lengthof(Spaces))
466 return write(Spaces, NumSpaces);
470 (unsigned)array_lengthof(Spaces)-1);
471 write(Spaces, NumToWrite);

Completed in 317 milliseconds