Home
last modified time | relevance | path

Searched refs:GetNonReferenceType (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DGeneric.cpp15 auto container_type = container.GetCompilerType().GetNonReferenceType(); in GetDesugaredSmartPointerValue()
H A DLibCxxUnorderedMap.cpp117 .GetNonReferenceType() in GetElementType()
H A DLibCxxList.cpp185 list_type = list_type.GetNonReferenceType(); in Update()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DType.cpp1131 return TypeImpl(m_static_type.GetNonReferenceType(), in GetDereferencedType()
1132 m_dynamic_type.GetNonReferenceType()); in GetDereferencedType()
1134 return TypeImpl(m_static_type.GetNonReferenceType()); in GetDereferencedType()
H A DCompilerType.cpp675 CompilerType CompilerType::GetNonReferenceType() const { in GetNonReferenceType() function in CompilerType
678 return type_system_sp->GetNonReferenceType(m_type); in GetNonReferenceType()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObject.cpp3004 start_type = start_type.GetNonReferenceType(); in CastDerivedToBaseType()
3007 type.IsPointerType() ? type.GetPointeeType() : type.GetNonReferenceType(); in CastDerivedToBaseType()
3054 if (!inner_value_type.CompareTypes(type.GetNonReferenceType())) in CastDerivedToBaseType()
3059 return lldb::ValueObjectSP(inner_value->Cast(type.GetNonReferenceType())); in CastDerivedToBaseType()
3074 start_type = start_type.GetNonReferenceType(); in CastBaseToDerivedType()
3077 type.IsPointerType() ? type.GetPointeeType() : type.GetNonReferenceType(); in CastBaseToDerivedType()
3108 type.IsPointerType() ? type : type.GetNonReferenceType().GetPointerType(); in CastBaseToDerivedType()
H A DDILEval.cpp354 auto base_type = base->GetCompilerType().GetNonReferenceType(); in Visit()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h334 CompilerType GetNonReferenceType() const;
H A DTypeSystem.h497 GetNonReferenceType(lldb::opaque_compiler_type_t type) = 0;
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormatManager.cpp211 CompilerType non_ref_type = compiler_type.GetNonReferenceType(); in GetPossibleMatches()
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h785 CompilerType GetNonReferenceType(lldb::opaque_compiler_type_t type) override;
H A DTypeSystemClang.cpp4570 TypeSystemClang::GetNonReferenceType(lldb::opaque_compiler_type_t type) { in GetNonReferenceType() function in TypeSystemClang