reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

include/llvm/Support/FormatAdapters.h
   39     auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item));
   53     auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item));
   68     auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item));
   79   ~ErrorAdapter() { consumeError(std::move(Item)); }
   80   void format(llvm::raw_ostream &Stream, StringRef Style) { Stream << Item; }
lib/DebugInfo/CodeView/Formatters.cpp
   29   assert(Item.size() == 16 && "Expected 16-byte GUID");
   32     uint8_t Byte = Item[i];
tools/llvm-pdbutil/FormatUtil.h
  128     format_provider<T>::format(static_cast<T>(this->Item), Stream, Style);
tools/llvm-xray/xray-stacks.cpp
  122         Converter->SymbolOrNumber(Item.FuncId), Item.TId,
  122         Converter->SymbolOrNumber(Item.FuncId), Item.TId,
  123         DecodeRecordType(Item.RecordType));
unittests/Support/FormatVariadicTest.cpp
  598     void format(raw_ostream &S, StringRef Options) override { S << -Item; }