Lines Matching defs:Start

94   SourceLocation Start = Tok.getStartOfNonWhitespace().getLocWithOffset(Offset);
97 SourceRange(Start, Start.getLocWithOffset(ReplaceChars)), Spaces,
287 AlignTokenSequence(const FormatStyle &Style, unsigned Start, unsigned End,
315 for (unsigned i = Start; i != End; ++i) {
326 while (PreviousNonComment > Start &&
330 if (i != Start && CurrentChange.indentAndNestingLevel() >
336 bool ContinuedStringLiteral = i > Start &&
380 if (ScopeStart > Start + 1 &&
386 if (ScopeStart > Start + 1 &&
419 if (ScopeStart > Start + 1 &&
428 if (ScopeStart > Start + 1 &&
434 if (OuterScopeStart > Start &&
771 // Start and end of the token sequence we're processing.
914 // Start and end of the token sequence we're processing.
1229 void WhitespaceManager::alignTrailingComments(unsigned Start, unsigned End,
1231 for (unsigned i = Start; i != End; ++i) {
1278 void WhitespaceManager::alignEscapedNewlines(unsigned Start, unsigned End,
1280 for (unsigned i = Start; i < End; ++i) {
1316 void WhitespaceManager::alignArrayInitializers(unsigned Start, unsigned End) {
1319 alignArrayInitializersRightJustified(getCells(Start, End));
1321 alignArrayInitializersLeftJustified(getCells(Start, End));
1368 auto *Start = (Cells.begin() + RowCount * CellDescs.CellCounts[0]);
1369 auto *End = Start + Offset;
1370 ThisNetWidth = getNetWidth(Start, End, CellDescs.InitialSpaces);
1434 auto *Start = (Cells.begin() + RowCount * CellDescs.CellCounts[0]);
1435 auto *End = Start + Offset;
1436 auto ThisNetWidth = getNetWidth(Start, End, CellDescs.InitialSpaces);
1458 WhitespaceManager::CellDescriptions WhitespaceManager::getCells(unsigned Start,
1469 for (unsigned i = Start; i < End; ++i) {
1483 for (; Changes[j].NewlinesBefore == 0 && j > Start; --j) {
1555 if ((j - 1) > Start && Changes[j].Tok->is(tok::comma) &&
1579 unsigned WhitespaceManager::calculateCellWidth(unsigned Start, unsigned End,
1582 for (auto i = Start; i < End; i++) {
1591 void WhitespaceManager::alignToStartOfCell(unsigned Start, unsigned End) {
1592 if ((End - Start) <= 1)
1596 for (auto i = Start + 1; i < End; i++)
1598 Changes[i].Spaces = Changes[Start].Spaces;