Lines Matching refs:Spaces

31                                   int Spaces, unsigned StartOfTokenColumn,  in Change()  argument
41 ContinuesPPDirective(ContinuesPPDirective), Spaces(Spaces), in Change()
47 unsigned Spaces, in replaceWhitespace() argument
54 Spaces, StartOfTokenColumn, Newlines, "", "", in replaceWhitespace()
78 unsigned Newlines, int Spaces) { in replaceWhitespaceInToken() argument
84 SourceRange(Start, Start.getLocWithOffset(ReplaceChars)), Spaces, in replaceWhitespaceInToken()
85 std::max(0, Spaces), Newlines, PreviousPostfix, CurrentPrefix, in replaceWhitespaceInToken()
159 Changes[i - 1].TokenLength + Changes[i - 1].Spaces; in calculateLineBreakInformation()
275 Changes[i].Spaces += Shift; in AlignTokenSequence()
285 Changes[i].Spaces += Shift; in AlignTokenSequence()
405 int LineLengthAfter = -Changes[i].Spaces; in AlignTokens()
407 LineLengthAfter += Changes[j].Spaces + Changes[j].TokenLength; in AlignTokens()
562 Changes[i].Spaces += Shift; in alignTrailingComments()
622 std::max(0, C.Spaces), in generateChanges()
623 C.StartOfTokenColumn - std::max(0, C.Spaces)); in generateChanges()
657 unsigned Spaces = in appendEscapedNewlineText() local
660 Text.append(Spaces, ' '); in appendEscapedNewlineText()
662 Spaces = std::max<int>(0, EscapedNewlineColumn - 1); in appendEscapedNewlineText()
668 unsigned IndentLevel, unsigned Spaces, in appendIndentText() argument
672 Text.append(Spaces, ' '); in appendIndentText()
678 if (FirstTabWidth + Style.TabWidth <= Spaces) { in appendIndentText()
679 Spaces -= FirstTabWidth; in appendIndentText()
682 Text.append(Spaces / Style.TabWidth, '\t'); in appendIndentText()
683 Text.append(Spaces % Style.TabWidth, ' '); in appendIndentText()
691 if (Indentation > Spaces) in appendIndentText()
692 Indentation = Spaces; in appendIndentText()
695 Spaces -= Tabs * Style.TabWidth; in appendIndentText()
697 Text.append(Spaces, ' '); in appendIndentText()
701 unsigned Tabs = Spaces / Style.TabWidth; in appendIndentText()
703 Spaces -= Tabs * Style.TabWidth; in appendIndentText()
705 Text.append(Spaces, ' '); in appendIndentText()