reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
815 Text.append(Spaces, ' '); 823 if (Spaces < FirstTabWidth || Spaces == 1) { 823 if (Spaces < FirstTabWidth || Spaces == 1) { 824 Text.append(Spaces, ' '); 828 Spaces -= FirstTabWidth; 831 Text.append(Spaces / Style.TabWidth, '\t'); 832 Text.append(Spaces % Style.TabWidth, ' '); 833 } else if (Spaces == 1) { 834 Text.append(Spaces, ' '); 843 if (Indentation > Spaces) 844 Indentation = Spaces; 848 Spaces -= Tabs * Style.TabWidth; 851 Text.append(Spaces, ' '); 855 unsigned Tabs = Spaces / Style.TabWidth; 857 Spaces -= Tabs * Style.TabWidth; 859 Text.append(Spaces, ' ');