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

References

include/llvm/DebugInfo/CodeView/TypeRecord.h
  453     return (Options & ClassOptions::Scoped) != ClassOptions::None;
lib/CodeGen/AsmPrinter/CodeViewDebug.cpp
 2017       CO |= ClassOptions::Scoped;
 2022         CO |= ClassOptions::Scoped;
lib/DebugInfo/CodeView/EnumTables.cpp
  312     CV_ENUM_CLASS_ENT(ClassOptions, Scoped),
lib/DebugInfo/CodeView/TypeDumpVisitor.cpp
   40     ENUM_ENTRY(ClassOptions, Scoped),
lib/DebugInfo/PDB/Native/NativeTypeEnum.cpp
  337   return bool(Record->getOptions() & codeview::ClassOptions::Scoped);
lib/DebugInfo/PDB/Native/NativeTypeUDT.cpp
  203   return (Tag->Options & ClassOptions::Scoped) != ClassOptions::None;
lib/DebugInfo/PDB/Native/TpiHashing.cpp
   31   bool Scoped = bool(Opts & ClassOptions::Scoped);
   69   bool Scoped = bool(Opts & ClassOptions::Scoped);
lib/ObjectYAML/CodeViewYAMLTypes.cpp
  370   IO.bitSetCase(Options, "Scoped", ClassOptions::Scoped);
tools/llvm-pdbutil/MinimalTypeDumper.cpp
   71   PUSH_FLAG(ClassOptions, Scoped, Options, "scoped");