Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DFormatAdapters.h20 class FormatAdapter : public support::detail::format_adapter {
22 explicit FormatAdapter(T &&Item) : Item(std::forward<T>(Item)) {} in FormatAdapter() function
29 template <typename T> class AlignAdapter final : public FormatAdapter<T> {
36 : FormatAdapter<T>(std::forward<T>(Item)), Where(Where), Amount(Amount), in AlignAdapter()
45 template <typename T> class PadAdapter final : public FormatAdapter<T> {
51 : FormatAdapter<T>(std::forward<T>(Item)), Left(Left), Right(Right) {} in PadAdapter()
61 template <typename T> class RepeatAdapter final : public FormatAdapter<T> {
66 : FormatAdapter<T>(std::forward<T>(Item)), Count(Count) {} in RepeatAdapter()
76 class ErrorAdapter : public FormatAdapter<Error> {
78 ErrorAdapter(Error &&Item) : FormatAdapter(std::move(Item)) {} in ErrorAdapter()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DFormatters.cpp23 : FormatAdapter(ArrayRef(Guid.bytes_begin(), Guid.bytes_end())) {} in GuidAdapter()
26 : FormatAdapter(std::move(Guid)) {} in GuidAdapter()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DFormatUtil.h109 : public FormatAdapter<support::detail::packed_endian_specific_integral<
115 : FormatAdapter<EndianType>(std::move(Item)) {} in EndianAdapter()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DFormatters.h29 class GuidAdapter final : public FormatAdapter<ArrayRef<uint8_t>> {
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-stacks.cpp112 struct format_xray_record : public FormatAdapter<XRayRecord> {
115 : FormatAdapter<XRayRecord>(std::move(record)), Converter(&conv) {} in format_xray_record()