Home
last modified time | relevance | path

Searched refs:typedef_type (Results 1 – 5 of 5) sorted by relevance

/external/lldb/source/Symbol/
DType.cpp370 Type *typedef_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); in GetTypedefType() local
371 if (typedef_type) in GetTypedefType()
372 type_sp = typedef_type->shared_from_this(); in GetTypedefType()
694 Type::CreateClangTypedefType (Type *typedef_type, Type *base_type)
696 assert(typedef_type && base_type);
697 return GetClangASTContext().CreateTypedefType (typedef_type->GetName().AsCString(),
699typedef_type->GetSymbolFile()->GetClangDeclContextContainingTypeUID(typedef_type->GetID()));
DClangASTType.cpp1085 const TypedefType *typedef_type = qual_type->getAs<TypedefType>(); in GetTypeName() local
1086 if (typedef_type) in GetTypeName()
1088 const TypedefNameDecl *typedef_decl = typedef_type->getDecl(); in GetTypeName()
1672 const TypedefType *typedef_type = dyn_cast<TypedefType>(GetQualType()); in GetTypedefedType() local
1673 if (typedef_type) in GetTypedefedType()
1674 return ClangASTType (m_ast, typedef_type->getDecl()->getUnderlyingType()); in GetTypedefedType()
6093 const TypedefType *typedef_type = qual_type->getAs<TypedefType>(); in DumpTypeDescription() local
6094 if (typedef_type) in DumpTypeDescription()
6096 const TypedefNameDecl *typedef_decl = typedef_type->getDecl(); in DumpTypeDescription()
/external/lldb/include/lldb/Symbol/
DType.h267 CreateClangTypedefType (Type *typedef_type, Type *base_type);
/external/lldb/source/Expression/
DClangASTSource.cpp1827 if (const TypedefType *typedef_type = llvm::dyn_cast<TypedefType>(qual_type)) in AddTypeDecl() local
1829 TypedefNameDecl *typedef_name_decl = typedef_type->getDecl(); in AddTypeDecl()
/external/lldb/source/Plugins/SymbolFile/DWARF/
DSymbolFileDWARF.cpp7844 …else if (const clang::TypedefType *typedef_type = llvm::dyn_cast<clang::TypedefType>(qual_type.get… in SearchDeclContext() local
7846 clang::TypedefNameDecl *typedef_decl = typedef_type->getDecl(); in SearchDeclContext()