Home
last modified time | relevance | path

Searched refs:GetTypeClass (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBType.i714 %feature("autodoc", "GetTypeClass() -> TypeClass") GetTypeClass;
721 ") GetTypeClass;
723 GetTypeClass ();
916 …type = property(GetTypeClass, None, doc='''A read only property that returns an lldb enumeration v…
/llvm-project-15.0.7/lldb/source/Symbol/
H A DTypeList.cpp131 match_type_class = the_type->GetForwardCompilerType().GetTypeClass(); in RemoveMismatchedTypes()
202 the_type->GetForwardCompilerType().GetTypeClass(); in RemoveMismatchedTypes()
H A DTypeMap.cpp147 match_type_class = the_type->GetForwardCompilerType().GetTypeClass(); in RemoveMismatchedTypes()
H A DCompilerType.cpp305 lldb::TypeClass CompilerType::GetTypeClass() const { in GetTypeClass() function in CompilerType
309 return m_type_system->GetTypeClass(m_type); in GetTypeClass()
H A DVariable.cpp538 const lldb::TypeClass type_class = compiler_type.GetTypeClass(); in PrivateAutoComplete()
/llvm-project-15.0.7/lldb/test/API/python_api/sbtype_typeclass/
H A Dmain.m12 //% typeClass = s_type.GetTypeClass()
/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp724 EXPECT_EQ(lldb::eTypeClassBuiltin, m_ast->GetTypeClass(t.getAsOpaquePtr())); in TEST_F()
730 EXPECT_EQ(lldb::eTypeClassBuiltin, m_ast->GetTypeClass(t.getAsOpaquePtr())); in TEST_F()
737 EXPECT_EQ(lldb::eTypeClassBuiltin, m_ast->GetTypeClass(t.getAsOpaquePtr())); in TEST_F()
744 EXPECT_EQ(lldb::eTypeClassBuiltin, m_ast->GetTypeClass(t.getAsOpaquePtr())); in TEST_F()
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBType.h203 lldb::TypeClass GetTypeClass();
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp533 lldb::TypeClass SBType::GetTypeClass() { in GetTypeClass() function in SBType
537 return m_opaque_sp->GetCompilerType(true).GetTypeClass(); in GetTypeClass()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h175 lldb::TypeClass GetTypeClass() const;
H A DTypeSystem.h216 virtual lldb::TypeClass GetTypeClass(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/lldb/examples/python/
H A Dtypes.py204 member_type_class = member_canonical_type.GetTypeClass()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h653 lldb::TypeClass GetTypeClass(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp4093 TypeSystemClang::GetTypeClass(lldb::opaque_compiler_type_t type) { in GetTypeClass() function in TypeSystemClang