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

References

tools/llvm-pdbutil/PrettyClassLayoutGraphicalDumper.cpp
  211   Dumper.start(Symbol, FunctionDumper::PointerType::None);
tools/llvm-pdbutil/PrettyCompilandDumper.cpp
  171   Dumper.start(Symbol, FunctionDumper::PointerType::None);
tools/llvm-pdbutil/PrettyFunctionDumper.cpp
   53                            const char *Name, PointerType Pointer) {
   72   if (Pointer == PointerType::None) {
   90     if (Pointer == PointerType::Reference)
  116 void FunctionDumper::start(const PDBSymbolFunc &Symbol, PointerType Pointer) {
  154     if (Pointer == PointerType::Pointer)
  156     else if (Pointer == FunctionDumper::PointerType::Reference)
  167   if (Pointer != FunctionDumper::PointerType::None)
  176   if (Pointer != FunctionDumper::PointerType::None) {
  177     if (Pointer == PointerType::Pointer)
  179     else if (Pointer == FunctionDumper::PointerType::Reference)
  249     PointerType Pointer =
  250         Symbol.isReference() ? PointerType::Reference : PointerType::Pointer;
  250         Symbol.isReference() ? PointerType::Reference : PointerType::Pointer;
tools/llvm-pdbutil/PrettyFunctionDumper.h
   25              PointerType Pointer);
   26   void start(const PDBSymbolFunc &Symbol, PointerType Pointer);
tools/llvm-pdbutil/PrettyTypeDumper.cpp
  309   Dumper.start(Symbol, nullptr, FunctionDumper::PointerType::None);
  317     FunctionDumper::PointerType PT =
  318         Symbol.isReference() ? FunctionDumper::PointerType::Reference
  319                              : FunctionDumper::PointerType::Pointer;
tools/llvm-pdbutil/PrettyTypedefDumper.cpp
   60     FunctionDumper::PointerType Pointer = FunctionDumper::PointerType::Pointer;
   60     FunctionDumper::PointerType Pointer = FunctionDumper::PointerType::Pointer;
   62       Pointer = FunctionDumper::PointerType::Reference;
   76   Dumper.start(Symbol, nullptr, FunctionDumper::PointerType::None);
tools/llvm-pdbutil/llvm-pdbutil.cpp
 1156           FD.start(*F, FunctionDumper::PointerType::None);
 1232             Dumper.start(*Function, FunctionDumper::PointerType::None);
 1241             Dumper.start(*Func, FunctionDumper::PointerType::None);