Lines Matching refs:Spaces

30                                   int Spaces, unsigned StartOfTokenColumn,  in Change()  argument
40 ContinuesPPDirective(ContinuesPPDirective), Spaces(Spaces), in Change()
46 unsigned Spaces, in replaceWhitespace() argument
53 Spaces, StartOfTokenColumn, Newlines, "", "", in replaceWhitespace()
77 unsigned Newlines, int Spaces) { in replaceWhitespaceInToken() argument
83 SourceRange(Start, Start.getLocWithOffset(ReplaceChars)), Spaces, in replaceWhitespaceInToken()
84 std::max(0, Spaces), Newlines, PreviousPostfix, CurrentPrefix, in replaceWhitespaceInToken()
159 Changes[i - 1].TokenLength + Changes[i - 1].Spaces; in calculateLineBreakInformation()
281 Changes[i].Spaces += Shift; in AlignTokenSequence()
291 Changes[i].Spaces += Shift; in AlignTokenSequence()
411 int LineLengthAfter = -Changes[i].Spaces; in AlignTokens()
413 LineLengthAfter += Changes[j].Spaces + Changes[j].TokenLength; in AlignTokens()
461 Changes[I].Spaces += Shift; in AlignMacroSequence()
542 int LineLengthAfter = -Changes[I].Spaces; in alignConsecutiveMacros()
544 LineLengthAfter += Changes[j].Spaces + Changes[j].TokenLength; in alignConsecutiveMacros()
705 Changes[i].Spaces += Shift; in alignTrailingComments()
765 std::max(0, C.Spaces), in generateChanges()
766 C.StartOfTokenColumn - std::max(0, C.Spaces)); in generateChanges()
800 unsigned Spaces = in appendEscapedNewlineText() local
803 Text.append(Spaces, ' '); in appendEscapedNewlineText()
805 Spaces = std::max<int>(0, EscapedNewlineColumn - 1); in appendEscapedNewlineText()
811 unsigned IndentLevel, unsigned Spaces, in appendIndentText() argument
815 Text.append(Spaces, ' '); in appendIndentText()
821 if (Spaces < FirstTabWidth || Spaces == 1) { in appendIndentText()
822 Text.append(Spaces, ' '); in appendIndentText()
826 Spaces -= FirstTabWidth; in appendIndentText()
829 Text.append(Spaces / Style.TabWidth, '\t'); in appendIndentText()
830 Text.append(Spaces % Style.TabWidth, ' '); in appendIndentText()
838 if (Indentation > Spaces) in appendIndentText()
839 Indentation = Spaces; in appendIndentText()
842 Spaces -= Tabs * Style.TabWidth; in appendIndentText()
844 Text.append(Spaces, ' '); in appendIndentText()
848 unsigned Tabs = Spaces / Style.TabWidth; in appendIndentText()
850 Spaces -= Tabs * Style.TabWidth; in appendIndentText()
852 Text.append(Spaces, ' '); in appendIndentText()