Searched refs:FormatAdapter (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FormatAdapters.h | 20 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/Target/DirectX/ |
| H A D | DXILPrettyPrinter.cpp | 141 : public llvm::FormatAdapter<const dxil::ResourceTypeInfo &> { 143 : llvm::FormatAdapter<const dxil::ResourceTypeInfo &>(RI), in FormatResourceDimension() 180 : public llvm::FormatAdapter<const dxil::ResourceInfo &> { 185 : llvm::FormatAdapter<const dxil::ResourceInfo &>(RI), in FormatBindingID() 194 : public llvm::FormatAdapter<const dxil::ResourceInfo &> { 199 : llvm::FormatAdapter<const dxil::ResourceInfo &>(RI), in FormatBindingLocation() 211 : public llvm::FormatAdapter<const dxil::ResourceInfo &> { 213 : llvm::FormatAdapter<const dxil::ResourceInfo &>(RI) {} in FormatBindingSize()
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | Formatters.cpp | 23 : 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 D | FormatUtil.h | 111 : public FormatAdapter<support::detail::packed_endian_specific_integral< 117 : FormatAdapter<EndianType>(std::move(Item)) {} in EndianAdapter()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | Formatters.h | 30 class LLVM_ABI GuidAdapter final : public FormatAdapter<ArrayRef<uint8_t>> {
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-xray/ |
| H A D | xray-stacks.cpp | 112 struct format_xray_record : public FormatAdapter<XRayRecord> { 115 : FormatAdapter<XRayRecord>(std::move(record)), Converter(&conv) {} in format_xray_record()
|