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

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangPersistentVariables.cpp89 if (clang::EnumDecl *enum_decl = llvm::dyn_cast<clang::EnumDecl>(decl)) {
90 for (clang::EnumConstantDecl *enumerator_decl : enum_decl->enumerators()) {
/freebsd-11-stable/usr.bin/rpcgen/
H A Drpc_parse.h138 declaration enum_decl; member in struct:union_def
H A Drpc_cout.c325 print_stat(1, &def->def.un.enum_decl);
326 f_print(fout, "\tswitch (objp->%s) {\n", def->def.un.enum_decl.name);
H A Drpc_hout.c214 decl = &def->def.un.enum_decl;
H A Drpc_parse.c300 defp->def.un.enum_decl = dec;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DClangASTImporter.cpp371 clang::EnumDecl *enum_decl = local
373 if (enum_decl) {
374 if (GetDeclOrigin(enum_decl).Valid())
447 clang::EnumDecl *enum_decl = local
449 if (enum_decl) {
450 if (GetDeclOrigin(enum_decl).Valid())
H A DClangASTContext.cpp2042 EnumDecl *enum_decl = EnumDecl::Create( local
2049 if (enum_decl) {
2051 decl_ctx->addDecl(enum_decl);
2054 enum_decl->setIntegerType(ClangUtil::GetQualType(integer_clang_type));
2056 enum_decl->setAccess(AS_public); // TODO respect what's in the debug info
2058 return GetType(ast.getTagDeclType(enum_decl));
5140 const clang::EnumDecl *enum_decl = enum_type->getDecl(); local
5141 if (enum_decl) {
5142 CompilerType integer_type = GetType(enum_decl->getIntegerType());
5145 for (enum_pos = enum_decl
7715 clang::EnumDecl *enum_decl = local
7905 clang::EnumDecl *enum_decl = enutype->getDecl(); local
8151 const clang::EnumDecl *enum_decl = enutype->getDecl(); local
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp502 auto enum_decl = ClangASTContext::GetAsEnumDecl(ast_enum); local
503 assert(enum_decl);
504 m_uid_to_decl[type.getSymIndexId()] = enum_decl;
/freebsd-11-stable/contrib/gcc/
H A Dc-parser.c1886 tree enum_decl;
1904 enum_decl = build_enumerator (enum_id, enum_value);
1905 TREE_CHAIN (enum_decl) = values;
1906 values = enum_decl;
1884 tree enum_decl; local

Completed in 374 milliseconds