Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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-15.0.7/llvm/include/llvm/Support/
H A DFormatAdapters.h97 detail::RepeatAdapter<T> fmt_repeat(T &&Item, size_t Count) { in fmt_repeat() function
/llvm-project-15.0.7/llvm/unittests/Support/
H A DFormatVariadicTest.cpp620 EXPECT_EQ("171171171171171", formatv("{0}", fmt_repeat(N, 5)).str()); in TEST()
623 formatv("{0:X-}", fmt_pad(fmt_repeat(N, 5), 1, 3)).str()); in TEST()
625 formatv("{0,=34:X-}", fmt_repeat(fmt_pad(N, 1, 3), 5)).str()); in TEST()
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DDumpOutputStyle.cpp234 P.formatLine("{0}", fmt_repeat('=', 60)); in printHeader()
337 P.formatLine("{0}", fmt_repeat('-', 74)); in printModuleDetailStats()
374 fmt_repeat(' ', NumDigits(StreamCount)), in dumpStreamSummary()
616 P.formatLine("{0}", fmt_repeat('-', 74)); in dumpTypeStats()
765 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
773 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
778 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
H A DBytesOutputStyle.cpp82 P.formatLine("{0}", fmt_repeat('=', 60)); in printHeader()
H A DMinimalTypeDumper.cpp391 fmt_repeat(' ', P.getIndentLevel() + strlen("method names: "))) in visitKnownRecord()
/llvm-project-15.0.7/lldb/tools/lldb-vscode/
H A DJSONUtils.cpp673 inst_offset, llvm::fmt_repeat(' ', spaces), m, in CreateSource()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp8576 s->Format("\n{0}{1}", llvm::fmt_repeat(" ", depth + DEPTH_INCREMENT), in DumpValue()
/llvm-project-15.0.7/llvm/docs/
H A DProgrammersManual.rst391 S = formatv("{0}", fmt_repeat("hi", 3)); // S == "hihihi"