HomeSort by relevance Sort by last modified time
    Searched defs:GetBasicType (Results 1 - 4 of 4) sorted by null

  /external/lldb/source/API/
SBModule.cpp 509 sb_type = SBType (ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), name));
515 SBModule::GetBasicType(lldb::BasicType type)
519 return SBType (ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), type));
552 SBType sb_type(ClangASTContext::GetBasicType (module_sp->GetClangASTContext().getASTContext(), name));
SBType.cpp 264 SBType::GetBasicType()
272 SBType::GetBasicType(lldb::BasicType basic_type)
275 return SBType (ClangASTContext::GetBasicType (m_opaque_sp->GetASTContext(), basic_type));
SBTarget.cpp     [all...]
  /external/lldb/source/Symbol/
ClangASTContext.cpp 670 ClangASTContext::GetBasicType (ASTContext *ast, const ConstString &name)
675 return ClangASTContext::GetBasicType (ast, basic_type);
684 m_pointer_byte_size = GetBasicType(lldb::eBasicTypeVoid).GetPointerType().GetByteSize();
689 ClangASTContext::GetBasicType (lldb::BasicType basic_type)
691 return GetBasicType (getASTContext(), basic_type);
695 ClangASTContext::GetBasicType (ASTContext *ast, lldb::BasicType basic_type)
    [all...]

Completed in 105 milliseconds