Searched refs:basic_type (Results 1 – 8 of 8) sorted by relevance
| /llvm-project-15.0.7/lldb/bindings/python/ |
| H A D | python-extensions.swig | 557 def is_numeric_type(basic_type): 559 if basic_type == eBasicTypeVoid: return (False,False) 560 if basic_type == eBasicTypeChar: return (True,False) 563 if basic_type == eBasicTypeWChar: return (True,False) 568 if basic_type == eBasicTypeChar8: return (True,False) 569 if basic_type == eBasicTypeShort: return (True,True) 571 if basic_type == eBasicTypeInt: return (True,True) 573 if basic_type == eBasicTypeLong: return (True,True) 580 if basic_type == eBasicTypeHalf: return (True,True) 581 if basic_type == eBasicTypeFloat: return (True,True) [all …]
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBType.cpp | 363 SBType SBType::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument 364 LLDB_INSTRUMENT_VA(this, basic_type); in GetBasicType() 368 m_opaque_sp->GetTypeSystem(false)->GetBasicTypeFromAST(basic_type)); in GetBasicType()
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 474 CompilerType::GetBasicTypeFromAST(lldb::BasicType basic_type) const { in GetBasicTypeFromAST() 476 return m_type_system->GetBasicTypeFromAST(basic_type); in GetBasicTypeFromAST()
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 261 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
|
| H A D | TypeSystem.h | 428 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
|
| /llvm-project-15.0.7/lldb/unittests/Symbol/ |
| H A D | TestTypeSystemClang.cpp | 257 for (lldb::BasicType basic_type : types_to_test) { in TEST_F() local 258 SCOPED_TRACE(std::to_string(basic_type)); in TEST_F() 261 CompilerType basic_compiler_type = ast.GetBasicType(basic_type); in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.h | 721 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override; 1018 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
|
| H A D | TypeSystemClang.cpp | 930 CompilerType TypeSystemClang::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument 934 GetOpaqueCompilerType(&ast, basic_type); in GetBasicType() 2009 lldb::BasicType basic_type) { in GetOpaqueCompilerType() argument 2010 switch (basic_type) { in GetOpaqueCompilerType() 4660 CompilerType TypeSystemClang::GetBasicTypeFromAST(lldb::BasicType basic_type) { in GetBasicTypeFromAST() argument 4661 return TypeSystemClang::GetBasicType(basic_type); in GetBasicTypeFromAST()
|