Searched defs:typedef_type (Results 1 - 2 of 2) sorted by relevance

/external/lldb/source/Symbol/
H A DType.cpp370 Type *typedef_type = m_symbol_file->ResolveTypeUID(m_encoding_uid); local
371 if (typedef_type)
372 type_sp = typedef_type->shared_from_this();
694 Type::CreateClangTypedefType (Type *typedef_type, Type *base_type)
696 assert(typedef_type && base_type);
697 return GetClangASTContext().CreateTypedefType (typedef_type->GetName().AsCString(),
699 typedef_type->GetSymbolFile()->GetClangDeclContextContainingTypeUID(typedef_type->GetID()));
H A DClangASTType.cpp1085 const TypedefType *typedef_type = qual_type->getAs<TypedefType>(); local
1086 if (typedef_type)
1088 const TypedefNameDecl *typedef_decl = typedef_type->getDecl();
1672 const TypedefType *typedef_type = dyn_cast<TypedefType>(GetQualType()); local
1673 if (typedef_type)
1674 return ClangASTType (m_ast, typedef_type->getDecl()->getUnderlyingType());
6093 const TypedefType *typedef_type = qual_type->getAs<TypedefType>();
6094 if (typedef_type)
6096 const TypedefNameDecl *typedef_decl = typedef_type->getDecl();

Completed in 219 milliseconds