Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-pdbutil/
DFormatUtil.cpp86 Result += formatv("{0}", fmt_repeat(' ', IndentLevel)); in typesetItemList()
96 Result += formatv("\n{0}{1}", fmt_repeat(' ', IndentLevel), S); in typesetStringList()
DDumpOutputStyle.cpp196 P.formatLine("{0}", fmt_repeat('=', 60)); in printHeader()
288 P.formatLine("{0}", fmt_repeat('-', 74)); in printModuleDetailStats()
353 fmt_repeat(' ', NumDigits(StreamCount)), in dumpStreamSummary()
781 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
789 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
794 P.formatLine("{0}", fmt_repeat('-', TableWidth)); in dumpUdtStats()
DBytesOutputStyle.cpp83 P.formatLine("{0}", fmt_repeat('=', 60)); in printHeader()
DMinimalTypeDumper.cpp354 fmt_repeat(' ', P.getIndentLevel() + strlen("method names: "))) in visitKnownRecord()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DFormatAdapters.h97 detail::RepeatAdapter<T> fmt_repeat(T &&Item, size_t Count) { in fmt_repeat() function
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/Support/
DFormatVariadicTest.cpp611 EXPECT_EQ("171171171171171", formatv("{0}", fmt_repeat(N, 5)).str()); in TEST()
614 formatv("{0:X-}", fmt_pad(fmt_repeat(N, 5), 1, 3)).str()); in TEST()
616 formatv("{0,=34:X-}", fmt_repeat(fmt_pad(N, 1, 3), 5)).str()); in TEST()
/external/swiftshader/third_party/llvm-7.0/llvm/docs/
DProgrammersManual.rst385 S = formatv("{0}", fmt_repeat("hi", 3)); // S == "hihihi"