Lines Matching refs:TabStop
108 unsigned TabStop) { in printableTextForNextCharacter() argument
113 assert(0 < TabStop && TabStop <= DiagnosticOptions::MaxTabStop && in printableTextForNextCharacter()
116 unsigned NumSpaces = TabStop - (Col % TabStop); in printableTextForNextCharacter()
117 assert(0 < NumSpaces && NumSpaces <= TabStop in printableTextForNextCharacter()
176 static void expandTabs(std::string &SourceLine, unsigned TabStop) { in expandTabs() argument
184 printableTextForNextCharacter(SourceLine, &TmpI, TabStop); in expandTabs()
225 static void genColumnByteMapping(StringRef SourceLine, unsigned TabStop, in genColumnByteMapping() argument
246 printableTextForNextCharacter(SourceLine, &I, TabStop); in genColumnByteMapping()
257 SourceColumnMap(StringRef SourceLine, unsigned TabStop) in SourceColumnMap()
260 genColumnByteMapping(SourceLine, TabStop, m_columnToByte, m_byteToColumn); in SourceColumnMap()
1060 expandTabs(FixItInsertionLine, DiagOpts->TabStop); in buildFixItInsertionLine()
1385 const SourceColumnMap sourceColMap(SourceLine, DiagOpts->TabStop); in emitSnippetAndCaret()
1467 printableTextForNextCharacter(SourceLine, &I, DiagOpts->TabStop); in emitSnippet()