Home
last modified time | relevance | path

Searched refs:enum_decl (Results 1 – 8 of 8) sorted by relevance

/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.cpp93 if (clang::EnumDecl *enum_decl = llvm::dyn_cast<clang::EnumDecl>(decl)) { in RegisterPersistentDecl() local
94 for (clang::EnumConstantDecl *enumerator_decl : enum_decl->enumerators()) { in RegisterPersistentDecl()
H A DClangASTImporter.cpp377 clang::EnumDecl *enum_decl = in CanImport() local
379 if (enum_decl) { in CanImport()
380 if (GetDeclOrigin(enum_decl).Valid()) in CanImport()
451 clang::EnumDecl *enum_decl = in Import() local
453 if (enum_decl) { in Import()
454 if (GetDeclOrigin(enum_decl).Valid()) in Import()
/freebsd-13.1/usr.bin/rpcgen/
H A Drpc_parse.h138 declaration enum_decl; member
H A Drpc_cout.c325 print_stat(1, &def->def.un.enum_decl); in emit_union()
326 f_print(fout, "\tswitch (objp->%s) {\n", def->def.un.enum_decl.name); in emit_union()
H A Drpc_hout.c214 decl = &def->def.un.enum_decl; in puniondef()
H A Drpc_parse.c301 defp->def.un.enum_decl = dec; in def_union()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2318 enum_decl->setScoped(is_scoped); in CreateEnumerationType()
2320 enum_decl->setFixed(false); in CreateEnumerationType()
2322 if (enum_decl) { in CreateEnumerationType()
2324 decl_ctx->addDecl(enum_decl); in CreateEnumerationType()
5519 if (enum_decl) { in ForEachEnumerator()
8132 clang::EnumDecl *enum_decl = in SetHasExternalStorage() local
8134 if (enum_decl) { in SetHasExternalStorage()
8265 enum_decl->completeDefinition(enum_decl->getIntegerType(), in CompleteTagDeclarationDefinition()
8581 assert(enum_decl); in DumpValue()
8797 assert(enum_decl); in DumpEnumValue()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp504 auto enum_decl = TypeSystemClang::GetAsEnumDecl(ast_enum); in CreateLLDBTypeFromPDBType() local
505 assert(enum_decl); in CreateLLDBTypeFromPDBType()
506 m_uid_to_decl[type.getSymIndexId()] = enum_decl; in CreateLLDBTypeFromPDBType()