Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/unittests/Symbol/
H A DTestTypeSystemClang.cpp923 TEST_F(TestTypeSystemClang, GetFullyUnqualifiedType) { in TEST_F() argument
928 EXPECT_EQ(bool_, cv_bool.GetFullyUnqualifiedType()); in TEST_F()
932 cv_bool.GetArrayType(47).GetFullyUnqualifiedType()); in TEST_F()
937 cv_bool.GetArrayType(42).GetArrayType(47).GetFullyUnqualifiedType()); in TEST_F()
941 cv_bool.GetPointerType().GetFullyUnqualifiedType()); in TEST_F()
946 cv_bool.GetPointerType().GetArrayType(47).GetFullyUnqualifiedType()); in TEST_F()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DType.cpp1009 return TypeImpl(m_static_type.GetFullyUnqualifiedType(), in GetUnqualifiedType()
1010 m_dynamic_type.GetFullyUnqualifiedType()); in GetUnqualifiedType()
1012 return TypeImpl(m_static_type.GetFullyUnqualifiedType()); in GetUnqualifiedType()
H A DCompilerType.cpp347 CompilerType CompilerType::GetFullyUnqualifiedType() const { in GetFullyUnqualifiedType() function in CompilerType
349 return m_type_system->GetFullyUnqualifiedType(m_type); in GetFullyUnqualifiedType()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h191 CompilerType GetFullyUnqualifiedType() const;
H A DTypeSystem.h452 GetFullyUnqualifiedType(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/lldb/source/DataFormatters/
H A DFormatManager.cpp282 compiler_type.GetFullyUnqualifiedType(); in GetPossibleMatches()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h668 GetFullyUnqualifiedType(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp4292 TypeSystemClang::GetFullyUnqualifiedType(lldb::opaque_compiler_type_t type) { in GetFullyUnqualifiedType() function in TypeSystemClang