Searched refs:Enum (Results 26 - 50 of 104) sorted by relevance

12345

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/MC/MCParser/
H A DMCAsmParser.h43 // Represents an Enum value
61 EnumIdentifier Enum; member in union:llvm::InlineAsmIdentifierInfo::__anon3241
70 Enum.EnumVal = enumVal;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeEnum.cpp117 : NativeRawSymbol(Session, PDB_SymType::Enum, Id), Index(Index),
123 : NativeRawSymbol(Session, PDB_SymType::Enum, Id),
176 PDB_SymType NativeTypeEnum::getSymTag() const { return PDB_SymType::Enum; }
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h244 #define ENUM_CASE(Enum) io.enumCase(value, #Enum, MachO::Enum);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTCommon.cpp286 case Decl::Enum:
345 case Decl::Enum:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp169 const auto *Enum = cast<DIEnumerator>(Element); local
172 BTFEnum.NameOff = BDebug.addString(Enum->getName());
175 if (Enum->isUnsigned())
176 Value = static_cast<uint32_t>(Enum->getValue().getZExtValue());
178 Value = static_cast<uint32_t>(Enum->getValue().getSExtValue());
186 for (const auto &Enum : EnumValues) {
187 OS.emitInt32(Enum.NameOff);
188 OS.emitInt32(Enum.Val);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp49 #define OMP_RTL_ATTRS(Enum, FnAttrSet, RetAttrSet, ArgAttrSets) \
50 case Enum: \
68 #define OMP_RTL(Enum, Str, IsVarArg, ReturnType, ...) \
69 case Enum: \
80 #define OMP_RTL(Enum, Str, ...) \
81 case Enum: \
353 #define OMP_CANCEL_KIND(Enum, Str, DirectiveEnum, Value) \
/freebsd-13-stable/contrib/llvm-project/clang/lib/Index/
H A DIndexSymbol.cpp122 Info.Kind = SymbolKind::Enum; break;
348 case Decl::Enum:
507 case SymbolKind::Enum: return "enum";
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Demangle/
H A DMicrosoftDemangleNodes.cpp22 #define OUTPUT_ENUM_CLASS_VALUE(Enum, Value, Desc) \
23 case Enum::Value: \
532 OUTPUT_ENUM_CLASS_VALUE(TagKind, Enum, "enum");
/freebsd-13-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DCodeGenRegisters.h87 CodeGenSubRegIndex(Record *R, unsigned Enum);
88 CodeGenSubRegIndex(StringRef N, StringRef Nspace, unsigned Enum);
164 CodeGenRegister(Record *R, unsigned Enum);
H A DCodeGenRegisters.cpp53 CodeGenSubRegIndex::CodeGenSubRegIndex(Record *R, unsigned Enum) argument
54 : TheDef(R), EnumValue(Enum), AllSuperRegsCovered(true), Artificial(true) {
63 unsigned Enum)
65 Size(-1), Offset(-1), EnumValue(Enum), AllSuperRegsCovered(true),
156 CodeGenRegister::CodeGenRegister(Record *R, unsigned Enum) argument
158 EnumValue(Enum),
62 CodeGenSubRegIndex(StringRef N, StringRef Nspace, unsigned Enum) argument
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaTemplateInstantiateDecl.cpp1197 EnumDecl *Enum = local
1210 Enum->setIntegerType(SemaRef.Context.IntTy);
1212 Enum->setIntegerTypeSourceInfo(NewTI);
1216 Enum->setIntegerType(D->getIntegerType());
1220 SemaRef.InstantiateAttrs(TemplateArgs, D, Enum);
1222 Enum->setInstantiationOfMemberEnum(D, TSK_ImplicitInstantiation);
1223 Enum->setAccess(D->getAccess());
1225 SemaRef.Context.setManglingNumber(Enum, SemaRef.Context.getManglingNumber(D));
1229 SemaRef.Context.addDeclaratorForUnnamedTagDecl(Enum, DD);
1233 SemaRef.Context.addTypedefNameForUnnamedTagDecl(Enum, TN
1267 InstantiateEnumDefinition( EnumDecl *Enum, EnumDecl *Pattern) argument
6025 EnumDecl *Enum = cast<EnumDecl>(ED->getLexicalDeclContext()); local
[all...]
H A DSemaDecl.cpp4708 if (EnumDecl *Enum = dyn_cast_or_null<EnumDecl>(Tag))
4709 if (Enum->enumerator_begin() == Enum->enumerator_end() &&
4710 !Enum->getIdentifier() && !Enum->isInvalidDecl())
7423 /// Enum describing the %select options in diag::warn_decl_shadow.
16009 DC->getDeclKind() == Decl::Enum) {
17442 EnumConstantDecl *Sema::CheckEnumConstant(EnumDecl *Enum, argument
17458 if (Enum->isDependentType() || Val->isTypeDependent())
17461 if (getLangOpts().CPlusPlus11 && Enum
17722 ValidDuplicateEnum(EnumConstantDecl *ECD, EnumDecl *Enum) argument
17758 CheckForDuplicateEnumValues(Sema &S, ArrayRef<Decl *> Elements, EnumDecl *Enum, QualType EnumType) argument
17900 EnumDecl *Enum = cast<EnumDecl>(EnumDeclX); local
18124 << ECD << Enum; local
[all...]
H A DSemaTemplateInstantiate.cpp2747 } else if (EnumDecl *Enum = dyn_cast<EnumDecl>(NewMember)) {
2752 if (TSK == TSK_ImplicitInstantiation && !Enum->isScoped() &&
2753 Enum->isCompleteDefinition()) {
2754 MemberSpecializationInfo *MSInfo =Enum->getMemberSpecializationInfo();
3390 } else if (auto *Enum = dyn_cast<EnumDecl>(D)) {
3391 MemberSpecializationInfo *MSInfo = Enum->getMemberSpecializationInfo();
3399 PointOfInstantiation, TSK, Enum,
3405 if (Enum->getDefinition())
3408 EnumDecl *Pattern = Enum->getTemplateInstantiationPattern();
3415 InstantiateEnum(PointOfInstantiation, Enum, Patter
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/AST/
H A DASTTypeTraits.h153 #define OMP_CLAUSE_CLASS(Enum, Str, Class) NKI_##Class,
210 #define OMP_CLAUSE_CLASS(Enum, Str, Class) KIND_TO_KIND_ID(Class)
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DRecordName.cpp114 Error TypeNameComputer::visitKnownRecord(CVType &CVR, EnumRecord &Enum) {
115 Name = Enum.getName();
/freebsd-13-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DIssueHash.cpp98 case Decl::Enum:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbol.cpp77 FACTORY_SYMTAG_CASE(Enum, PDBSymbolTypeEnum)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDIE.cpp400 context.push_back({CompilerContextKind::Enum, ConstString(GetName())});
/freebsd-13-stable/contrib/llvm-project/clang/lib/AST/
H A DComment.cpp363 case Decl::Enum:
/freebsd-13-stable/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DMarshallers.h218 #define OMP_CLAUSE_CLASS(Enum, Str, Class) .Case(#Enum, llvm::omp::Clause::Enum)
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DSymbolFilePDB.cpp459 PDB_SymType tags_to_search[] = {PDB_SymType::Enum, PDB_SymType::Typedef,
467 case PDB_SymType::Enum:
1223 // PDB have symbols for class/struct methods or static methods in Enum
1224 // Class. We won't bother to check if the parent is UDT or Enum here.
1468 PDB_SymType tags_to_search[] = {PDB_SymType::Enum, PDB_SymType::Typedef,
1536 case PDB_SymType::Enum:
1579 case PDB_SymType::Enum:
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DTargetLoweringBase.cpp450 #define OP_TO_LIBCALL(Name, Enum) \
456 return Enum##_1; \
458 return Enum##_2; \
460 return Enum##_4; \
462 return Enum##_8; \
464 return Enum##_16; \
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DOpenMPOpt.cpp327 #define ICV_DATA_ENV(Enum, _Name, _EnvVarName, Init) \
329 auto &ICV = ICVs[Enum]; \
331 ICV.Kind = Enum; \
/freebsd-13-stable/contrib/llvm-project/clang/lib/Frontend/
H A DInterfaceStubFunctionsConsumer.cpp188 case Decl::Kind::Enum:
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DTemplate.h617 void InstantiateEnumDefinition(EnumDecl *Enum, EnumDecl *Pattern);

Completed in 420 milliseconds

12345