Searched refs:ExtraSpaces (Results 1 – 4 of 4) sorted by relevance
/external/clang/lib/Format/ |
D | FormatToken.cpp | 107 unsigned ExtraSpaces = 0; in formatAfterToken() local 112 ExtraSpaces += Format->ColumnSizes[Column] - ItemLengths[Item]; in formatAfterToken() 124 Penalty += Indenter->addTokenToState(State, NewLine, DryRun, ExtraSpaces); in formatAfterToken()
|
D | ContinuationIndenter.h | 67 unsigned ExtraSpaces = 0); 110 unsigned ExtraSpaces);
|
D | ContinuationIndenter.cpp | 258 unsigned ExtraSpaces) { in addTokenToState() argument 286 addTokenOnCurrentLine(State, DryRun, ExtraSpaces); in addTokenToState() 292 unsigned ExtraSpaces) { in addTokenOnCurrentLine() argument 311 unsigned Spaces = Current.SpacesRequiredBefore + ExtraSpaces; in addTokenOnCurrentLine()
|
/external/clang/unittests/Format/ |
D | FormatTest.cpp | 6372 FormatStyle ExtraSpaces = getLLVMStyle(); in TEST_F() local 6373 ExtraSpaces.Cpp11BracedListStyle = false; in TEST_F() 6374 ExtraSpaces.ColumnLimit = 75; in TEST_F() 6375 verifyFormat("vector<int> x{ 1, 2, 3, 4 };", ExtraSpaces); in TEST_F() 6376 verifyFormat("vector<T> x{ {}, {}, {}, {} };", ExtraSpaces); in TEST_F() 6377 verifyFormat("f({ 1, 2 });", ExtraSpaces); in TEST_F() 6378 verifyFormat("auto v = Foo{ 1 };", ExtraSpaces); in TEST_F() 6379 verifyFormat("f({ 1, 2 }, { { 2, 3 }, { 4, 5 } }, c, { d });", ExtraSpaces); in TEST_F() 6380 verifyFormat("Class::Class : member{ 1, 2, 3 } {}", ExtraSpaces); in TEST_F() 6381 verifyFormat("new vector<int>{ 1, 2, 3 };", ExtraSpaces); in TEST_F() [all …]
|