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

Declarations

tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.h
   31 class ProcSym;

References

include/llvm/DebugInfo/CodeView/SymbolDeserializer.h
   36   template <typename T> static Error deserializeAs(CVSymbol Symbol, T &Record) {
   83   template <typename T> Error visitKnownRecordImpl(CVSymbol &CVR, T &Record) {
include/llvm/DebugInfo/CodeView/SymbolSerializer.h
   52   static CVSymbol writeOneSymbol(SymType &Sym, BumpPtrAllocator &Storage,
   75   Error visitKnownRecordImpl(CVSymbol &CVR, RecordKind &Record) {
lib/DebugInfo/CodeView/CVSymbolVisitor.cpp
   24   T KnownRecord(RK);
lib/DebugInfo/CodeView/SymbolDumper.cpp
  559 Error CVSymbolDumperImpl::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) {
lib/DebugInfo/CodeView/SymbolRecordHelpers.cpp
   17 template <typename RecordT> static RecordT createRecord(const CVSymbol &sym) {
   18   RecordT record(static_cast<SymbolRecordKind>(sym.kind()));
   19   cantFail(SymbolDeserializer::deserializeAs<RecordT>(sym, record));
   32     ProcSym Proc = createRecord<ProcSym>(Sym);
   32     ProcSym Proc = createRecord<ProcSym>(Sym);
   63     ProcSym Proc = createRecord<ProcSym>(Sym);
   63     ProcSym Proc = createRecord<ProcSym>(Sym);
lib/DebugInfo/CodeView/SymbolRecordMapping.cpp
  409 Error SymbolRecordMapping::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) {
lib/ObjectYAML/CodeViewYAMLSymbols.cpp
  231     return SymbolDeserializer::deserializeAs<T>(CVS, Symbol);
  234   mutable T Symbol;
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbAstBuilder.cpp
  996   ProcSym proc(static_cast<SymbolRecordKind>(cvs.kind()));
  997   llvm::cantFail(SymbolDeserializer::deserializeAs<ProcSym>(cvs, proc));
tools/lldb/source/Plugins/SymbolFile/NativePDB/PdbUtil.cpp
  209 template <typename RecordT> RecordT createRecord(const CVSymbol &sym) {
  210   RecordT record(static_cast<SymbolRecordKind>(sym.kind()));
  211   cantFail(SymbolDeserializer::deserializeAs<RecordT>(sym, record));
  217   RecordT record = createRecord<RecordT>(sym);
  217   RecordT record = createRecord<RecordT>(sym);
  257     return ::GetSegmentAndOffset<ProcSym>(sym);
  297   RecordT record = createRecord<RecordT>(sym);
  297   RecordT record = createRecord<RecordT>(sym);
  330     return ::GetSegmentOffsetAndLength<ProcSym>(sym);
tools/lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp
  404   ProcSym proc(static_cast<SymbolRecordKind>(sym_record.kind()));
  405   cantFail(SymbolDeserializer::deserializeAs<ProcSym>(sym_record, proc));
 1411     ProcSym proc(static_cast<SymbolRecordKind>(sym.kind()));
 1412     cantFail(SymbolDeserializer::deserializeAs<ProcSym>(sym, proc));
tools/llvm-pdbutil/MinimalSymbolDumper.cpp
  812 Error MinimalSymbolDumper::visitKnownRecord(CVSymbol &CVR, ProcSym &Proc) {
unittests/DebugInfo/CodeView/TypeIndexDiscoveryTest.cpp
   72   template <typename... T> void writeSymbolRecords(T &&... Records) {
  160   void writeSymbolRecordsImpl(RecType &&Record, Rest &&... Records) {
  160   void writeSymbolRecordsImpl(RecType &&Record, Rest &&... Records) {
  538   ProcSym GS(SymbolRecordKind::GlobalProcSym);
  540   ProcSym LS(SymbolRecordKind::ProcSym);
usr/include/c++/7.4.0/bits/move.h
   72     constexpr _Tp&&
   83     constexpr _Tp&&
usr/include/c++/7.4.0/type_traits
 1633     { typedef _Tp   type; };