Home
last modified time | relevance | path

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

/freebsd-src/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.cpp96 if (clang::EnumDecl *enum_decl = llvm::dyn_cast<clang::EnumDecl>(decl)) { in RegisterPersistentDecl() local
97 for (clang::EnumConstantDecl *enumerator_decl : enum_decl->enumerators()) { in RegisterPersistentDecl()
H A DClangASTImporter.cpp381 clang::EnumDecl *enum_decl = in CanImport()
383 if (enum_decl) { in CanImport()
384 if (GetDeclOrigin(enum_decl).Valid()) in CanImport()
455 clang::EnumDecl *enum_decl = in Import()
457 if (enum_decl) { in Import()
458 if (GetDeclOrigin(enum_decl).Valid()) in Import()
378 clang::EnumDecl *enum_decl = CanImport() local
452 clang::EnumDecl *enum_decl = Import() local
/freebsd-src/usr.bin/rpcgen/
H A Drpc_parse.h133 declaration enum_decl; member
H A Drpc_cout.c315 print_stat(1, &def->def.un.enum_decl); in emit_union()
316 f_print(fout, "\tswitch (objp->%s) {\n", def->def.un.enum_decl.name); in emit_union()
H A Drpc_hout.c204 decl = &def->def.un.enum_decl; in puniondef()
H A Drpc_parse.c291 defp->def.un.enum_decl = dec; in def_union()
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2312 EnumDecl *enum_decl = EnumDecl::CreateDeserialized(ast, GlobalDeclID()); in CreateStructForIdentifier()
2313 enum_decl->setDeclContext(decl_ctx); in CreateStructForIdentifier()
2315 enum_decl->setDeclName(&ast.Idents.get(name)); in CreateStructForIdentifier()
2316 enum_decl->setScoped(is_scoped); in CreateStructForIdentifier()
2317 enum_decl->setScopedUsingClassTag(is_scoped); in CreateStructForIdentifier()
2318 enum_decl->setFixed(false); in CreateStructForIdentifier()
2319 SetOwningModule(enum_decl, owning_module); in CreateStructForIdentifier()
2321 decl_ctx->addDecl(enum_decl); in CreateStructForIdentifier()
2324 enum_decl->setIntegerType(ClangUtil::GetQualType(integer_clang_type)); in CreateStructForIdentifier()
2326 enum_decl in CreateStructForIdentifier()
2360 EnumDecl *enum_decl = EnumDecl::CreateDeserialized(ast, 0); CreateEnumerationType() local
5492 const clang::EnumDecl *enum_decl = enum_type->getDecl(); ForEachEnumerator() local
7528 const EnumDecl *enum_decl = enum_type->getDecl(); SetIntegerInitializerForVariable() local
8181 clang::EnumDecl *enum_decl = SetHasExternalStorage() local
8291 clang::EnumDecl *enum_decl = enutype->getDecl(); CompleteTagDeclarationDefinition() local
8474 const clang::EnumDecl *enum_decl = enutype->getDecl(); DumpEnumValue() local
8790 clang::EnumDecl *enum_decl = DumpTypeName() local
[all...]
/freebsd-src/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp512 auto enum_decl = TypeSystemClang::GetAsEnumDecl(ast_enum); in CreateLLDBTypeFromPDBType() local
513 assert(enum_decl); in CreateLLDBTypeFromPDBType()
514 m_uid_to_decl[type.getSymIndexId()] = enum_decl; in CreateLLDBTypeFromPDBType()