Home
last modified time | relevance | path

Searched refs:Adapter (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DFormatCommon.h20 detail::format_adapter &Adapter; member
25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount,
27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {} in Adapter() function
36 Adapter.format(S, Options); in format()
42 Adapter.format(Stream, Options); in format()
H A DFormatAdapters.h38 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local
39 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style); in format()
52 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local
54 Adapter.format(Stream, Style); in format()
67 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local
69 Adapter.format(Stream, Style); in format()
H A DFormatProviders.h406 auto Adapter =
408 Adapter.format(Stream, ArgStyle);
413 auto Adapter =
415 Adapter.format(Stream, ArgStyle);
/llvm-project-15.0.7/llvm/test/CodeGen/PowerPC/
H A Dregalloc-fast-debug-spill.ll148 !59 = distinct !DIGlobalVariable(name: "<std::io::Write::write_fmt::Adapter<std::io::stdio::StdoutL…
149 …ositeType(tag: DW_TAG_structure_type, name: "<std::io::Write::write_fmt::Adapter<std::io::stdio::S…
150 !61 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Adapter<std::io::stdio::StdoutLo…
154 !65 = distinct !DIGlobalVariable(name: "<std::io::Write::write_fmt::Adapter<std::io::stdio::StderrL…
155 …ositeType(tag: DW_TAG_structure_type, name: "<std::io::Write::write_fmt::Adapter<std::io::stdio::S…
156 !67 = distinct !DICompositeType(tag: DW_TAG_structure_type, name: "Adapter<std::io::stdio::StderrLo…
/llvm-project-15.0.7/llvm/unittests/Support/
H A DFormatVariadicTest.cpp604 TEST(FormatVariadicTest, Adapter) { in TEST() argument