Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp571 auto typedef_decl = TypeSystemClang::GetAsTypedefDecl(ast_typedef); in CreateLLDBTypeFromPDBType() local
572 assert(typedef_decl); in CreateLLDBTypeFromPDBType()
573 m_uid_to_decl[type.getSymIndexId()] = typedef_decl; in CreateLLDBTypeFromPDBType()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dc-decl.c3486 tree typedef_decl = 0; local
3639 typedef_decl = id;
3654 typedef_decl = t;
3774 || ! (typedef_decl != 0
3775 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
3787 else if (typedef_decl)
4362 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
/openbsd-src/gnu/gcc/gcc/cp/
H A Ddecl.c6987 tree typedef_decl = NULL_TREE; in grokdeclarator() local
7263 typedef_decl = type; in grokdeclarator()
7264 type = TREE_TYPE (typedef_decl); in grokdeclarator()
7280 if (typedef_decl) in grokdeclarator()
7281 decl_attr = DECL_ATTRIBUTES (typedef_decl); in grokdeclarator()
7393 && !(typedef_decl in grokdeclarator()
7394 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)) in grokdeclarator()
7406 else if (typedef_decl) in grokdeclarator()
7471 (type, type_quals, ((typedef_decl && !DECL_ARTIFICIAL (typedef_decl) in grokdeclarator()
8145 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))) in grokdeclarator()
H A DChangeLog-20023917 * decl.c (grokdeclarator): Set typedef_decl for all TYPE_DECLs,
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp2036 TypedefDecl *typedef_decl = TypedefDecl::Create( in AddContextClassType() local
2041 if (!typedef_decl) in AddContextClassType()
2044 context.AddNamedDecl(typedef_decl); in AddContextClassType()
/openbsd-src/gnu/usr.bin/gcc/gcc/cp/
H A Ddecl.c10500 tree typedef_decl = NULL_TREE; local
10999 typedef_decl = id;
11014 typedef_decl = t;
11026 if (typedef_decl)
11027 decl_attr = DECL_ATTRIBUTES (typedef_decl);
11178 && !(typedef_decl
11179 && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl))
11192 else if (typedef_decl)
11245 (type, type_quals, ((typedef_decl && !DECL_ARTIFICIAL (typedef_decl)
12130 || (typedef_decl && C_TYPEDEF_EXPLICITLY_SIGNED (typedef_decl)))
H A DChangeLog5320 * decl.c (grokdeclarator): Set typedef_decl for all TYPE_DECLs,
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3827 const clang::TypedefNameDecl *typedef_decl = typedef_type->getDecl(); in GetTypeName() local
3828 return ConstString(GetTypeNameForDecl(typedef_decl)); in GetTypeName()
8577 if (clang::TypedefNameDecl *typedef_decl = GetAsTypedefDecl(full_type)) { in DumpFromSymbolFile() local
8578 typedef_decl->dump(s.AsRawOstream()); in DumpFromSymbolFile()
9267 const clang::TypedefNameDecl *typedef_decl = typedef_type->getDecl(); in DumpTypeDescription() local
9269 typedef_decl->dump(llvm_ostrm); in DumpTypeDescription()
9271 std::string clang_typedef_name(GetTypeNameForDecl(typedef_decl)); in DumpTypeDescription()