Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.cpp61 if (clang::EnumDecl *enum_decl = llvm::dyn_cast<clang::EnumDecl>(decl)) { in RegisterPersistentDecl() local
62 for (clang::EnumConstantDecl *enumerator_decl : enum_decl->enumerators()) { in RegisterPersistentDecl()
/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTImporter.cpp341 clang::EnumDecl *enum_decl = in CanImport() local
343 if (enum_decl) { in CanImport()
344 if (ResolveDeclOrigin(enum_decl, NULL, NULL)) in CanImport()
417 clang::EnumDecl *enum_decl = in Import() local
419 if (enum_decl) { in Import()
420 if (ResolveDeclOrigin(enum_decl, NULL, NULL)) in Import()
H A DClangASTContext.cpp2334 if (enum_decl) { in CreateEnumerationType()
5825 if (enum_decl) { in ForEachEnumerator()
8733 clang::EnumDecl *enum_decl = in GetHasExternalStorage() local
8735 if (enum_decl) in GetHasExternalStorage()
8806 if (enum_decl) { in SetHasExternalStorage()
8917 if (enum_decl) { in CompleteTagDeclarationDefinition()
8944 enum_decl->completeDefinition(enum_decl->getIntegerType(), in CompleteTagDeclarationDefinition()
9024 if (enum_decl) in GetEnumerationIntegerType()
9257 assert(enum_decl); in DumpValue()
9513 assert(enum_decl); in DumpTypeValue()
[all …]
/freebsd-12.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-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp505 auto enum_decl = ClangASTContext::GetAsEnumDecl(ast_enum); in CreateLLDBTypeFromPDBType() local
506 assert(enum_decl); in CreateLLDBTypeFromPDBType()
507 m_uid_to_decl[type.getSymIndexId()] = enum_decl; in CreateLLDBTypeFromPDBType()
/freebsd-12.1/contrib/gcc/
H A Dc-parser.c1884 tree enum_decl; in c_parser_enum_specifier() local
1902 enum_decl = build_enumerator (enum_id, enum_value); in c_parser_enum_specifier()
1903 TREE_CHAIN (enum_decl) = values; in c_parser_enum_specifier()
1904 values = enum_decl; in c_parser_enum_specifier()