| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | BlockPointer.cpp | 66 clang_ast_context->GetBasicType(lldb::eBasicTypeObjCClass); in BlockPointerSyntheticFrontEnd() 69 clang_ast_context->GetBasicType(lldb::eBasicTypeInt); in BlockPointerSyntheticFrontEnd() 72 clang_ast_context->GetBasicType(lldb::eBasicTypeInt); in BlockPointerSyntheticFrontEnd()
|
| H A D | LibCxx.cpp | 251 ast_ctx->GetBasicType(lldb::eBasicTypeVoid).GetPointerType()}, in Update() 253 ast_ctx->GetBasicType(lldb::eBasicTypeVoid).GetPointerType()}, in Update() 255 ast_ctx->GetBasicType(lldb::eBasicTypeVoid).GetPointerType()}, in Update() 256 {"cw", ast_ctx->GetBasicType(lldb::eBasicTypeBool)}, in Update() 577 ->GetBasicType(lldb::eBasicTypeWChar) in LibcxxWStringSummaryProvider()
|
| H A D | LibCxxMap.cpp | 306 {{"ptr0", ast_ctx->GetBasicType(lldb::eBasicTypeVoid).GetPointerType()}, in GetValueOffset() 307 {"ptr1", ast_ctx->GetBasicType(lldb::eBasicTypeVoid).GetPointerType()}, in GetValueOffset() 308 {"ptr2", ast_ctx->GetBasicType(lldb::eBasicTypeVoid).GetPointerType()}, in GetValueOffset() 309 {"cw", ast_ctx->GetBasicType(lldb::eBasicTypeBool)}, in GetValueOffset()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/tools/lldb-mi/ |
| H A D | MICmnLLDBUtilSBValue.cpp | 282 const lldb::BasicType eType = m_rValue.GetType().GetBasicType(); in IsCharType() 329 m_rValue.GetType().GetPointeeType().GetBasicType(); in IsPointeeCharType() 345 const lldb::BasicType eType = m_rValue.GetType().GetBasicType(); in IsIntegerType()
|
| H A D | MICmnLLDBDebugger.cpp | 45 lldb::BasicType type_code = value_type.GetBasicType(); in MI_char_summary_provider()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Language/ObjC/ |
| H A D | NSError.cpp | 92 ->GetBasicType(lldb::eBasicTypeVoid) in NSError_SummaryProvider() 160 process_sp->GetTarget().GetScratchClangASTContext()->GetBasicType( in Update()
|
| H A D | NSException.cpp | 75 ->GetBasicType(lldb::eBasicTypeVoid) in ExtractFields()
|
| H A D | NSString.cpp | 45 ast_ctx->GetBasicType(lldb::eBasicTypeVoid).GetPointerType(); in GetNSPathStore2Type()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/API/ |
| H A D | SBType.h | 150 lldb::BasicType GetBasicType(); 153 lldb::SBType GetBasicType(lldb::BasicType type);
|
| H A D | SBModule.h | 238 lldb::SBType GetBasicType(lldb::BasicType type);
|
| H A D | SBTarget.h | 832 lldb::SBType GetBasicType(lldb::BasicType type);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| H A D | InferiorCallPOSIX.cpp | 86 clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); in InferiorCallMmap() 207 clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); in InferiorCall()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 116 CompilerType opaque_type = ast_context->GetBasicType(eBasicTypeObjCID); in GetObjectDescription() 118 opaque_type = ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); in GetObjectDescription() 497 exception_sp->GetTargetSP()->GetScratchClangASTContext()->GetBasicType( in GetBacktraceThreadFromException()
|
| H A D | AppleObjCTrampolineHandler.cpp | 527 clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); in RefreshTrampolines() 806 clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); in SetupDispatchFunction() 902 clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); in GetStepThroughDispatchPlan()
|
| H A D | AppleObjCRuntimeV2.cpp | 1308 ast->GetBasicType(eBasicTypeVoid).GetPointerType(); in UpdateISAToDescriptorMapDynamic() 1563 ast->GetBasicType(eBasicTypeVoid).GetPointerType(); in UpdateISAToDescriptorMapSharedCache() 2616 ->GetBasicType(lldb::eBasicTypeVoid) in ObjCExceptionRecognizedStackFrame()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbAstBuilder.h | 75 clang::QualType GetBasicType(lldb::BasicType type);
|
| H A D | PdbAstBuilder.cpp | 700 return GetBasicType(lldb::eBasicTypeNullPtr); in CreateSimpleType() 714 return GetBasicType(bt); in CreateSimpleType() 893 clang::QualType PdbAstBuilder::GetBasicType(lldb::BasicType type) { in GetBasicType() function in PdbAstBuilder 894 CompilerType ct = m_clang.GetBasicType(type); in GetBasicType()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/API/ |
| H A D | SBType.cpp | 267 lldb::BasicType SBType::GetBasicType() { in GetBasicType() function in SBType 273 SBType SBType::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() function in SBType
|
| H A D | SBTarget.cpp | 1829 return SBType(ClangASTContext::GetBasicType(clang_ast->getASTContext(), in FindFirstType() 1835 SBType SBTarget::GetBasicType(lldb::BasicType type) { in GetBasicType() function in SBTarget 1841 ClangASTContext::GetBasicType(clang_ast->getASTContext(), type)); in GetBasicType() 1896 sb_type_list.Append(SBType(ClangASTContext::GetBasicType( in FindTypes()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.cpp | 117 return clang_ast.GetBasicType(eBasicTypeVoid); in GetBuiltinTypeForPDBEncodingAndBitSize() 119 return clang_ast.GetBasicType(eBasicTypeChar); in GetBuiltinTypeForPDBEncodingAndBitSize() 121 return clang_ast.GetBasicType(eBasicTypeBool); in GetBuiltinTypeForPDBEncodingAndBitSize() 496 builtin_type = m_ast.GetBasicType(eBasicTypeInt); in CreateLLDBTypeFromPDBType()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Platform/POSIX/ |
| H A D | PlatformPOSIX.cpp | 1018 = ast->GetBasicType(eBasicTypeVoid).GetPointerType(); in MakeLoadImageUtilityFunction() 1020 = ast->GetBasicType(eBasicTypeChar).GetPointerType(); in MakeLoadImageUtilityFunction() 1253 = ast->GetBasicType(eBasicTypeVoid).GetPointerType(); in DoLoadImage()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Symbol/ |
| H A D | ClangASTContext.h | 168 CompilerType GetBasicType(lldb::BasicType type); 170 static CompilerType GetBasicType(clang::ASTContext *ast, 173 static CompilerType GetBasicType(clang::ASTContext *ast,
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.cpp | 380 clang_type = m_ast.GetBasicType(eBasicTypeNullPtr); in ParseTypeFromDWARF() 472 clang_type = m_ast.GetBasicType(eBasicTypeObjCID); in ParseTypeFromDWARF() 483 clang_type = m_ast.GetBasicType(eBasicTypeObjCClass); in ParseTypeFromDWARF() 493 clang_type = m_ast.GetBasicType(eBasicTypeObjCSel); in ParseTypeFromDWARF() 515 clang_type = m_ast.GetBasicType(eBasicTypeObjCID); in ParseTypeFromDWARF() 1093 enumerator_clang_type = m_ast.GetBasicType(eBasicTypeInt); in ParseTypeFromDWARF() 1273 return_clang_type = m_ast.GetBasicType(eBasicTypeVoid); in ParseTypeFromDWARF() 2037 clang_type = m_ast.GetBasicType(eBasicTypeVoid); in ParseTemplateDIE()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/ |
| H A D | ItaniumABILanguageRuntime.cpp | 563 clang_ast_context->GetBasicType(eBasicTypeVoid).GetPointerType(); in GetExceptionObjectForThread()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.cpp | 1776 ClangASTContext::GetBasicType(scratch_ast_context, eBasicTypeVoid) in AddOneGenericVariable() 1780 ClangASTContext::GetBasicType(m_ast_context, eBasicTypeVoid) in AddOneGenericVariable() 2145 ClangASTContext::GetBasicType(m_ast_context, eBasicTypeVoid); in AddThisType()
|