Home
last modified time | relevance | path

Searched refs:fmt_repeat (Results 1 – 9 of 9) sorted by relevance

/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/
H A DLVReader.cpp87 dbgs() << formatv("{0}\n", fmt_repeat('=', 72)); in checkIntegrityScopesTree()
90 dbgs() << formatv("{0}\n", fmt_repeat('=', 72)); in checkIntegrityScopesTree()
98 dbgs() << formatv("\n{0}\n", fmt_repeat('-', 72)); in checkIntegrityScopesTree()
102 dbgs() << formatv("{0}\n", fmt_repeat('-', 72)); in checkIntegrityScopesTree()
/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DFormatUtil.cpp34 Result += std::string(formatv("{0}", fmt_repeat(' ', IndentLevel))); in typesetItemList()
44 Result += std::string(formatv("\n{0}{1}", fmt_repeat(' ', IndentLevel), S)); in typesetStringList()
/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h101 support::detail::RepeatAdapter<T> fmt_repeat(T &&Item, size_t Count) { in fmt_repeat() function
/llvm-project/llvm/unittests/Support/
H A DFormatVariadicTest.cpp675 EXPECT_EQ("171171171171171", formatv("{0}", fmt_repeat(N, 5)).str()); in TEST()
678 formatv("{0:X-}", fmt_pad(fmt_repeat(N, 5), 1, 3)).str()); in TEST()
680 formatv("{0,=34:X-}", fmt_repeat(fmt_pad(N, 1, 3), 5)).str()); in TEST()
/llvm-project/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp235 P.formatLine("{0}", fmt_repeat('=', 60)); in printHeader()
338 P.formatLine("{0}", fmt_repeat('-', 74)); in printModuleDetailStats()
375 fmt_repeat(' ', NumDigits(StreamCount)), in dumpStreamSummary()
618 P.formatLine("{0}", fmt_repeat('-', 74)); in dumpTypeStats()
767 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
775 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
780 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
H A DBytesOutputStyle.cpp82 P.formatLine("{0}", fmt_repeat('=', 60)); in printHeader()
H A DMinimalTypeDumper.cpp393 fmt_repeat(' ', P.getIndentLevel() + strlen("method names: "))) in visitKnownRecord()
/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/
H A DLVCodeViewVisitor.cpp414 dbgs() << formatv("\n{0}\n", fmt_repeat('=', 72)); in init()
416 dbgs() << formatv("{0}\n", fmt_repeat('=', 72)); in init()
/llvm-project/llvm/docs/
H A DProgrammersManual.rst391 S = formatv("{0}", fmt_repeat("hi", 3)); // S == "hihihi"