Lines Matching defs:TabStop
103 /// \param TabStop used to expand tabs
108 unsigned TabStop) {
113 assert(0 < TabStop && TabStop <= DiagnosticOptions::MaxTabStop &&
116 unsigned NumSpaces = TabStop - (Col % TabStop);
117 assert(0 < NumSpaces && NumSpaces <= TabStop
176 static void expandTabs(std::string &SourceLine, unsigned TabStop) {
184 printableTextForNextCharacter(SourceLine, &TmpI, TabStop);
225 static void genColumnByteMapping(StringRef SourceLine, unsigned TabStop,
246 printableTextForNextCharacter(SourceLine, &I, TabStop);
257 SourceColumnMap(StringRef SourceLine, unsigned TabStop)
260 genColumnByteMapping(SourceLine, TabStop, m_columnToByte, m_byteToColumn);
1060 expandTabs(FixItInsertionLine, DiagOpts->TabStop);
1385 const SourceColumnMap sourceColMap(SourceLine, DiagOpts->TabStop);
1467 printableTextForNextCharacter(SourceLine, &I, DiagOpts->TabStop);