Home
last modified time | relevance | path

Searched refs:TabStop (Results 1 – 7 of 7) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DTextDiagnostic.cpp99 unsigned TabStop) { in printableTextForNextCharacter() argument
104 assert(0 < TabStop && TabStop <= DiagnosticOptions::MaxTabStop && in printableTextForNextCharacter()
107 unsigned NumSpaces = TabStop - col%TabStop; in printableTextForNextCharacter()
108 assert(0 < NumSpaces && NumSpaces <= TabStop in printableTextForNextCharacter()
162 static void expandTabs(std::string &SourceLine, unsigned TabStop) { in expandTabs() argument
170 = printableTextForNextCharacter(SourceLine, &tmp_i, TabStop); in expandTabs()
197 static void byteToColumn(StringRef SourceLine, unsigned TabStop, in byteToColumn() argument
213 = printableTextForNextCharacter(SourceLine, &i, TabStop); in byteToColumn()
231 static void columnToByte(StringRef SourceLine, unsigned TabStop, in columnToByte() argument
246 = printableTextForNextCharacter(SourceLine, &i, TabStop); in columnToByte()
[all …]
H A DCompilerInvocation.cpp2312 if (Opts.TabStop == 0 || Opts.TabStop > DiagnosticOptions::MaxTabStop) { in ParseDiagnosticArgs()
2313 Opts.TabStop = DiagnosticOptions::DefaultTabStop; in ParseDiagnosticArgs()
2315 << Opts.TabStop << DiagnosticOptions::DefaultTabStop; in ParseDiagnosticArgs()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DSourceMgr.cpp38 static const size_t TabStop = 8; variable
466 } while ((OutCol % TabStop) != 0); in printSourceLine()
575 } while ((OutCol % TabStop) != 0); in print()
602 } while (((OutCol % TabStop) != 0) && i != e); in print()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DDiagnosticOptions.def94 VALUE_DIAGOPT(TabStop, 32, DefaultTabStop) /// The distance between tab stops.
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseStmt.cpp1263 unsigned TabStop = SM.getDiagnostics().getDiagnosticOptions().TabStop; in getVisualIndentation() local
1266 if (ColNo == 0 || TabStop == 1) in getVisualIndentation()
1288 VisualColumn += (TabStop - VisualColumn % TabStop); in getVisualIndentation()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp483 unsigned TabStop = getInstStartColumn(STI); in printInst() local
485 OS.indent(Column < TabStop - 1 ? TabStop - 1 - Column : 7 - Column % 8); in printInst()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Driver/
H A DOptions.td5088 MarshallingInfoInt<DiagnosticOpts<"TabStop">, "DiagnosticOptions::DefaultTabStop">;