HomeSort by relevance Sort by last modified time
    Searched refs:Spaces (Results 1 - 7 of 7) 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);
104 /// \p PreviousLinePostfix, \p NewlinesBefore line breaks, \p Spaces spaces
110 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,
39 Spaces(Spaces) {}
47 unsigned IndentLevel, unsigned Spaces,
53 Changes.push_back(Change(true, Tok.WhitespaceRange, IndentLevel, Spaces,
63 /*Spaces=*/0, Tok.OriginalColumn, Tok.NewlinesBefore,
71 unsigned Newlines, unsigned IndentLevel, int Spaces) {
77 IndentLevel, Spaces, std::max(0, Spaces), Newlines, PreviousPostfix,
222 Changes[i].Spaces += Shift
    [all...]
ContinuationIndenter.cpp 277 unsigned Spaces = Current.SpacesRequiredBefore + ExtraSpaces;
281 Spaces, State.Column + Spaces);
288 State.Column + Spaces + Current.ColumnWidth)
292 State.Stack.back().ColonPos = State.Column + Spaces + Current.ColumnWidth;
297 State.Stack.back().Indent = State.Column + Spaces;
303 State.Column += Spaces;
    [all...]
  /external/clang/unittests/Format/
FormatTest.cpp     [all...]
  /external/compiler-rt/lib/ubsan/
ubsan_diag.cc 243 unsigned Spaces = 0;
250 Spaces += (P % 8) == 0 ? 2 : 1;
253 while (Spaces--)
261 Spaces += 2;
  /external/llvm/lib/Support/
raw_ostream.cpp 397 /// indent - Insert 'NumSpaces' spaces.
399 static const char Spaces[] = " "
404 if (NumSpaces < array_lengthof(Spaces))
405 return write(Spaces, NumSpaces);
409 (unsigned)array_lengthof(Spaces)-1);
410 write(Spaces, NumToWrite);
  /external/chromium_org/base/debug/
proc_maps_linux_unittest.cc 35 TEST(ProcMapsTest, Spaces) {

Completed in 276 milliseconds