Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.cpp95 if (clang::EnumDecl *enum_decl = llvm::dyn_cast<clang::EnumDecl>(decl)) { in RegisterPersistentDecl() local
96 for (clang::EnumConstantDecl *enumerator_decl : enum_decl->enumerators()) { in RegisterPersistentDecl()
H A DClangASTImporter.cpp378 clang::EnumDecl *enum_decl = in CanImport() local
380 if (enum_decl) { in CanImport()
381 if (GetDeclOrigin(enum_decl).Valid()) in CanImport()
452 clang::EnumDecl *enum_decl = in Import() local
454 if (enum_decl) { in Import()
455 if (GetDeclOrigin(enum_decl).Valid()) in Import()
/openbsd/usr.bin/rpcgen/
H A Drpc_parse.h110 declaration enum_decl; member
H A Drpc_cout.c348 print_stat(1, &def->def.un.enum_decl);
349 fprintf(fout, "\tswitch (objp->%s) {\n", def->def.un.enum_decl.name);
H A Drpc_hout.c198 decl = &def->def.un.enum_decl;
H A Drpc_parse.c302 defp->def.un.enum_decl = dec;
/openbsd/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2356 enum_decl->setScoped(is_scoped); in CreateEnumerationType()
2358 enum_decl->setFixed(false); in CreateEnumerationType()
2361 decl_ctx->addDecl(enum_decl); in CreateEnumerationType()
5613 if (enum_decl) { in ForEachEnumerator()
8306 clang::EnumDecl *enum_decl = in SetHasExternalStorage() local
8308 if (enum_decl) { in SetHasExternalStorage()
8442 enum_decl->completeDefinition(enum_decl->getIntegerType(), in CompleteTagDeclarationDefinition()
8758 assert(enum_decl); in DumpValue()
8974 assert(enum_decl); in DumpEnumValue()
9334 clang::EnumDecl *enum_decl = in DumpTypeName() local
[all …]
/openbsd/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp513 auto enum_decl = TypeSystemClang::GetAsEnumDecl(ast_enum); in CreateLLDBTypeFromPDBType() local
514 assert(enum_decl); in CreateLLDBTypeFromPDBType()
515 m_uid_to_decl[type.getSymIndexId()] = enum_decl; in CreateLLDBTypeFromPDBType()
/openbsd/gnu/gcc/gcc/
H A Dc-parser.c1736 tree enum_decl; in c_parser_enum_specifier() local
1754 enum_decl = build_enumerator (enum_id, enum_value); in c_parser_enum_specifier()
1755 TREE_CHAIN (enum_decl) = values; in c_parser_enum_specifier()
1756 values = enum_decl; in c_parser_enum_specifier()