Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp564 auto typedef_decl = TypeSystemClang::GetAsTypedefDecl(ast_typedef); in CreateLLDBTypeFromPDBType() local
565 assert(typedef_decl); in CreateLLDBTypeFromPDBType()
566 m_uid_to_decl[type.getSymIndexId()] = typedef_decl; in CreateLLDBTypeFromPDBType()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp2035 TypedefDecl *typedef_decl = TypedefDecl::Create( in AddContextClassType() local
2040 if (!typedef_decl) in AddContextClassType()
2043 context.AddNamedDecl(typedef_decl); in AddContextClassType()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3786 const clang::TypedefNameDecl *typedef_decl = typedef_type->getDecl(); in GetTypeName() local
3787 return ConstString(GetTypeNameForDecl(typedef_decl)); in GetTypeName()
8500 if (clang::TypedefNameDecl *typedef_decl = GetAsTypedefDecl(full_type)) { in DumpFromSymbolFile() local
8501 typedef_decl->dump(s.AsRawOstream()); in DumpFromSymbolFile()
9189 const clang::TypedefNameDecl *typedef_decl = typedef_type->getDecl(); in DumpTypeDescription() local
9191 typedef_decl->dump(llvm_ostrm); in DumpTypeDescription()
9193 std::string clang_typedef_name(GetTypeNameForDecl(typedef_decl)); in DumpTypeDescription()