Home
last modified time | relevance | path

Searched refs:basic_type (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-extensions.swig557 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 DSBType.cpp363 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 DCompilerType.cpp474 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 DCompilerType.h261 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
H A DTypeSystem.h428 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp257 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 DTypeSystemClang.h721 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override;
1018 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
H A DTypeSystemClang.cpp930 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()