Searched refs:basic_type (Results 1 – 8 of 8) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-extensions.swig | 570 def is_numeric_type(basic_type): 572 if basic_type == eBasicTypeVoid: return (False,False) 573 if basic_type == eBasicTypeChar: return (True,False) 576 if basic_type == eBasicTypeWChar: return (True,False) 581 if basic_type == eBasicTypeChar8: return (True,False) 582 if basic_type == eBasicTypeShort: return (True,True) 584 if basic_type == eBasicTypeInt: return (True,True) 586 if basic_type == eBasicTypeLong: return (True,True) 593 if basic_type == eBasicTypeHalf: return (True,True) 594 if basic_type == eBasicTypeFloat: return (True,True) [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/API/ |
| H A D | SBType.cpp | 362 SBType SBType::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument 363 LLDB_INSTRUMENT_VA(this, basic_type); in GetBasicType() 367 return SBType(ts->GetBasicTypeFromAST(basic_type)); in GetBasicType()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | SymbolFileCTF.cpp | 334 lldb::BasicType basic_type = in CreateInteger() local 336 if (basic_type == eBasicTypeInvalid) in CreateInteger() 343 CompilerType compiler_type = m_ast->GetBasicType(basic_type); in CreateInteger() 345 if (basic_type != eBasicTypeVoid) { in CreateInteger()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 371 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
|
| H A D | TypeSystem.h | 428 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 728 CompilerType::GetBasicTypeFromAST(lldb::BasicType basic_type) const { in GetBasicTypeFromAST() 731 return type_system_sp->GetBasicTypeFromAST(basic_type); in GetBasicTypeFromAST()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.h | 809 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override; 1097 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
|
| H A D | TypeSystemClang.cpp | 933 CompilerType TypeSystemClang::GetBasicType(lldb::BasicType basic_type) { in GetBasicType() argument 937 GetOpaqueCompilerType(&ast, basic_type); in GetBasicType() 2049 lldb::BasicType basic_type) { in GetOpaqueCompilerType() argument 2050 switch (basic_type) { in GetOpaqueCompilerType() 4634 CompilerType TypeSystemClang::GetBasicTypeFromAST(lldb::BasicType basic_type) { in GetBasicTypeFromAST() argument 4635 return TypeSystemClang::GetBasicType(basic_type); in GetBasicTypeFromAST()
|