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()
823 if (Spaces < FirstTabWidth || Spaces == 1) { in appendIndentText()
824 Text.append(Spaces, ' '); in appendIndentText()
828 Spaces -= FirstTabWidth; in appendIndentText()
831 Text.append(Spaces / Style.TabWidth, '\t'); in appendIndentText()
832 Text.append(Spaces % Style.TabWidth, ' '); in appendIndentText()
833 } else if (Spaces == 1) { in appendIndentText()
834 Text.append(Spaces, ' '); in appendIndentText()
843 if (Indentation > Spaces) in appendIndentText()
844 Indentation = Spaces; in appendIndentText()
848 Spaces -= Tabs * Style.TabWidth; in appendIndentText()
851 Text.append(Spaces, ' '); in appendIndentText()
855 unsigned Tabs = Spaces / Style.TabWidth; in appendIndentText()
857 Spaces -= Tabs * Style.TabWidth; in appendIndentText()
859 Text.append(Spaces, ' '); in appendIndentText()