Home | History | Annotate | Download | only in Format

Lines Matching refs:Limit

1336     unsigned Limit = Style.ColumnLimit - Indent;
1337 // If we already exceed the column limit, we set 'Limit' to 0. The different
1339 Limit = I->Last->TotalLength > Limit ? 0 : Limit - I->Last->TotalLength;
1345 tryMergeSimpleBlock(I, E, Limit);
1347 tryMergeSimpleIf(I, E, Limit);
1350 tryMergeSimplePPDirective(I, E, Limit);
1357 unsigned Limit) {
1358 if (Limit == 0)
1366 if (1 + (I + 1)->Last->TotalLength > Limit)
1373 unsigned Limit) {
1374 if (Limit == 0)
1385 if (1 + (I + 1)->Last->TotalLength > Limit)
1397 unsigned Limit) {
1412 // We merge empty blocks even if the line exceeds the column limit.
1417 } else if (Limit != 0) {
1418 // Check that we still have three lines and they fit into the limit.
1420 !nextTwoLinesFitInto(I, Limit))
1446 unsigned Limit) {
1448 Limit;