Searched refs:NumSpaces (Results 1 – 9 of 9) sorted by relevance
/netbsd-src/external/apache2/llvm/dist/clang/lib/Rewrite/ |
H A D | HTMLRewrite.cpp | 140 unsigned NumSpaces = 8-(ColNo&7); in EscapeText() local 144 " ", 6*NumSpaces)); in EscapeText() 146 RB.ReplaceText(FilePos, 1, StringRef(" ", NumSpaces)); in EscapeText() 147 ColNo += NumSpaces; in EscapeText()
|
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
H A D | DebugCounter.cpp | 37 size_t NumSpaces = GlobalWidth - Info.first.size() - 8; in printOptionInfo() local 39 outs().indent(NumSpaces) << " - " << Info.second << '\n'; in printOptionInfo()
|
H A D | CommandLine.cpp | 2038 size_t NumSpaces = MaxOptWidth > L ? MaxOptWidth - L : 0; in printGenericOptionDiff() local 2039 outs().indent(NumSpaces) << " (default: "; in printGenericOptionDiff() 2064 size_t NumSpaces = \ 2066 outs().indent(NumSpaces) << " (default: "; \ 2091 size_t NumSpaces = MaxOptWidth > V.size() ? MaxOptWidth - V.size() : 0; in PRINT_OPT_DIFF() local 2092 outs().indent(NumSpaces) << " (default: "; in PRINT_OPT_DIFF()
|
H A D | raw_ostream.cpp | 497 raw_ostream &raw_ostream::indent(unsigned NumSpaces) { in indent() argument 498 return write_padding<' '>(*this, NumSpaces); in indent()
|
H A D | VirtualFileSystem.cpp | 1274 int NumSpaces) const { in dumpEntry() 1276 for (int i = 0, e = NumSpaces; i < e; ++i) in dumpEntry() 1287 dumpEntry(OS, SubEntry.get(), NumSpaces + 2); in dumpEntry()
|
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-cov/ |
H A D | SourceCoverageViewHTML.cpp | 32 unsigned NumSpaces = Opts.TabSize - (ColNum % Opts.TabSize); in escape() local 33 TabExpandedResult.append(NumSpaces, ' '); in escape() 34 ColNum += NumSpaces; in escape()
|
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
H A D | TextDiagnostic.cpp | 107 unsigned NumSpaces = TabStop - col%TabStop; in printableTextForNextCharacter() local 108 assert(0 < NumSpaces && NumSpaces <= TabStop in printableTextForNextCharacter() 113 expandedTab.assign(NumSpaces, ' '); in printableTextForNextCharacter()
|
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
H A D | raw_ostream.h | 289 raw_ostream &indent(unsigned NumSpaces);
|
H A D | VirtualFileSystem.h | 856 void dumpEntry(raw_ostream &OS, Entry *E, int NumSpaces = 0) const;
|