HomeSort by: relevance | last modified time | path
    Searched refs:MethodOptions (Results 1 - 10 of 10) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
TypeDumpVisitor.h 65 MethodOptions Options);
TypeRecord.h 52 MemberAttributes(MemberAccess Access, MethodKind Kind, MethodOptions Flags) {
60 return MemberAccess(unsigned(Attrs) & unsigned(MethodOptions::AccessMask));
66 (unsigned(Attrs) & unsigned(MethodOptions::MethodKindMask)) >>
72 MethodOptions getFlags() const {
73 return MethodOptions(
75 ~unsigned(MethodOptions::AccessMask | MethodOptions::MethodKindMask));
728 MethodOptions Options, int32_t VFTableOffset, StringRef Name)
734 MethodOptions getOptions() const { return Attrs.getFlags(); }
CodeView.h 279 enum class MethodOptions : uint16_t {
289 CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(MethodOptions)
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeDumpVisitor.cpp 52 ENUM_ENTRY(MethodOptions, Pseudo),
53 ENUM_ENTRY(MethodOptions, NoInherit),
54 ENUM_ENTRY(MethodOptions, NoConstruct),
55 ENUM_ENTRY(MethodOptions, CompilerGenerated),
56 ENUM_ENTRY(MethodOptions, Sealed),
442 MethodOptions Options) {
448 if (Options != MethodOptions::None) {
449 W->printFlags("MethodOptions", unsigned(Options),
495 MethodOptions::None);
505 MethodOptions::None)
    [all...]
TypeRecordMapping.cpp 101 MethodOptions Options) {
112 if (Options != MethodOptions::None) {
113 std::string MethodOptions = getFlagNames(
115 MemberAttrs += ", " + MethodOptions;
619 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None);
630 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None);
643 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None);
682 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None);
694 IO, Record.getAccess(), MethodKind::Vanilla, MethodOptions::None);
EnumTables.cpp 334 CV_ENUM_CLASS_ENT(MethodOptions, Pseudo),
335 CV_ENUM_CLASS_ENT(MethodOptions, NoInherit),
336 CV_ENUM_CLASS_ENT(MethodOptions, NoConstruct),
337 CV_ENUM_CLASS_ENT(MethodOptions, CompilerGenerated),
338 CV_ENUM_CLASS_ENT(MethodOptions, Sealed),
TypeIndexDiscovery.cpp 18 Attrs &= uint16_t(MethodOptions::MethodKindMask);
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLTypes.cpp 69 LLVM_YAML_DECLARE_BITSET_TRAITS(MethodOptions)
381 void ScalarBitSetTraits<MethodOptions>::bitset(IO &IO, MethodOptions &Options) {
382 IO.bitSetCase(Options, "None", MethodOptions::None);
383 IO.bitSetCase(Options, "Pseudo", MethodOptions::Pseudo);
384 IO.bitSetCase(Options, "NoInherit", MethodOptions::NoInherit);
385 IO.bitSetCase(Options, "NoConstruct", MethodOptions::NoConstruct);
386 IO.bitSetCase(Options, "CompilerGenerated", MethodOptions::CompilerGenerated);
387 IO.bitSetCase(Options, "Sealed", MethodOptions::Sealed);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
MinimalTypeDumper.cpp 191 MethodOptions Flags = Attrs.getFlags();
192 PUSH_FLAG(MethodOptions, Pseudo, Flags, "pseudo");
193 PUSH_FLAG(MethodOptions, NoInherit, Flags, "noinherit");
194 PUSH_FLAG(MethodOptions, NoConstruct, Flags, "noconstruct");
195 PUSH_FLAG(MethodOptions, CompilerGenerated, Flags, "compiler-generated");
196 PUSH_FLAG(MethodOptions, Sealed, Flags, "sealed");
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 2007 static MethodOptions translateMethodOptionFlags(const DISubprogram *SP) {
2009 return MethodOptions::CompilerGenerated;
2011 // FIXME: Handle other MethodOptions.
2013 return MethodOptions::None;

Completed in 25 milliseconds