HomeSort by relevance Sort by last modified time
    Searched defs:Spaces (Results 1 - 5 of 5) 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...]
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/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/clang/unittests/Format/
FormatTest.cpp     [all...]
  /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 367 milliseconds