Home
last modified time | relevance | path

Searched refs:GetTypeInfo (Results 1 – 25 of 39) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DNSError.cpp32 Flags type_flags(valobj_type.GetTypeInfo()); in DerefToNSErrorPointer()
40 Flags pointee_flags(pointee_type.GetTypeInfo()); in DerefToNSErrorPointer()
H A DNSException.cpp40 Flags type_flags(valobj_type.GetTypeInfo()); in ExtractFields()
/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DValueObjectChild.cpp115 Flags parent_type_flags(parent_type.GetTypeInfo()); in UpdateValue()
201 if (GetCompilerType().GetTypeInfo() & lldb::eTypeHasValue) { in UpdateValue()
H A DValueObject.cpp472 const uint32_t type_info = GetTypeInfo(); in MightHaveChildren()
650 const Flags type_flags(GetTypeInfo(&pointee_or_element_compiler_type)); in IsCStringContainer()
666 const uint32_t type_info = GetTypeInfo(&pointee_or_element_compiler_type); in GetPointeeData()
898 const Flags type_flags(GetTypeInfo(&elem_or_pointee_compiler_type)); in ReadPointedString()
1305 Flags flags(GetTypeInfo()); in HasSpecialPrintableRepresentation()
1350 Flags flags(GetTypeInfo()); in DumpPrintableRepresentation()
2165 non_base_class_parent_compiler_type.GetTypeInfo(); in GetExpressionPath()
2317 root_compiler_type.GetTypeInfo(&pointee_compiler_type)); in GetValueForExpressionPath_Impl()
2319 pointee_compiler_type_info.Reset(pointee_compiler_type.GetTypeInfo()); in GetValueForExpressionPath_Impl()
3717 return (!type.IsValid()) || (0 != (type.GetTypeInfo() & eTypeHasValue)); in CanProvideValue()
H A DValueObjectVariable.cpp259 const uint32_t type_info = valobj.GetCompilerType().GetTypeInfo(); in DoUpdateChildrenAddressType()
H A DDILEval.cpp231 base->GetCompilerType().GetTypeInfo(nullptr); in Visit()
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DTypeFormat.cpp71 lldb_private::Flags type_flags(compiler_type.GetTypeInfo( in FormatObject()
176 if ((type_sp->GetForwardCompilerType().GetTypeInfo() & in FormatObject()
H A DValueObjectPrinter.cpp142 m_type_flags = m_compiler_type.GetTypeInfo(); in SetupMostSpecializedValue()
220 m_is_instance_ptr = (valobj.GetValue().GetCompilerType().GetTypeInfo() & in IsInstancePointer()
356 Flags type_flags(type.GetTypeInfo()); in IsPointerValue()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.h107 TypeAndOrName GetTypeInfo(ValueObject &in_value,
H A DItaniumABILanguageRuntime.cpp57 TypeAndOrName ItaniumABILanguageRuntime::GetTypeInfo( in GetTypeInfo() function in ItaniumABILanguageRuntime
315 class_type_or_name = GetTypeInfo(in_value, vtable_info); in GetDynamicTypeAndAddress()
366 Flags static_type_flags(static_type.GetTypeInfo()); in FixUpDynamicType()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp353 return GetTypeInfo() & lldb::eTypeIsSigned; in IsSigned()
367 return GetEnumerationIntegerType().GetTypeInfo() & lldb::eTypeIsSigned; in IsEnumerationIntegerTypeSigned()
553 uint32_t CompilerType::GetTypeInfo( in GetTypeInfo() function in CompilerType
557 return type_system_sp->GetTypeInfo(m_type, in GetTypeInfo()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DUserExpression.cpp160 if (!(ctx_obj->GetTypeInfo() & ctx_type_mask)) { in Evaluate()
168 if (ctx_obj && ctx_obj->GetTypeInfo() & lldb::TypeFlags::eTypeIsReference) { in Evaluate()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/GNUstepObjCRuntime/
H A DGNUstepObjCRuntime.cpp138 Flags static_type_flags(static_type.GetTypeInfo()); in FixUpDynamicType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc64.cpp519 const uint32_t type_flags = m_type.GetTypeInfo(); in GetValue()
597 uint32_t type_flags = m_type.GetTypeInfo(); in GetIntegerValue()
788 uint32_t type_flags = elem_type.GetTypeInfo(); in GetStructValueObject()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABISysV_i386.cpp215 const uint32_t type_flags = compiler_type.GetTypeInfo(); in SetReturnValueObject()
371 const uint32_t type_flags = return_compiler_type.GetTypeInfo(); in GetReturnValueObjectSimple()
H A DABIWindows_x86_64.cpp414 const uint32_t type_flags = return_compiler_type.GetTypeInfo(); in GetReturnValueObjectSimple()
582 const uint32_t field_type_flags = field_compiler_type.GetTypeInfo(); in FlattenAggregateType()
H A DABISysV_x86_64.cpp407 const uint32_t type_flags = return_compiler_type.GetTypeInfo(); in GetReturnValueObjectSimple()
606 const uint32_t field_type_flags = field_compiler_type.GetTypeInfo(); in FlattenAggregateType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/AArch64/
H A DABIMacOSX_arm64.cpp266 const uint32_t type_flags = return_value_type.GetTypeInfo(nullptr); in SetReturnValueObject()
598 const uint32_t type_flags = return_compiler_type.GetTypeInfo(nullptr); in GetReturnValueObjectImpl()
H A DABISysV_arm64.cpp307 const uint32_t type_flags = return_value_type.GetTypeInfo(nullptr); in SetReturnValueObject()
637 const uint32_t type_flags = return_compiler_type.GetTypeInfo(nullptr); in GetReturnValueObjectImpl()
/freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/
H A DValueObject.h378 GetTypeInfo(CompilerType *pointee_or_element_compiler_type = nullptr) {
379 return GetCompilerType().GetTypeInfo(pointee_or_element_compiler_type);
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h291 GetTypeInfo(CompilerType *pointee_or_element_compiler_type = nullptr) const;
H A DTypeSystem.h245 GetTypeInfo(lldb::opaque_compiler_type_t type,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips64.cpp687 const uint32_t type_flags = compiler_type.GetTypeInfo(nullptr); in SetReturnValueObject()
757 const uint32_t type_flags = return_compiler_type.GetTypeInfo(nullptr); in GetReturnValueObjectImpl()
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp287 Flags static_type_flags(static_type.GetTypeInfo()); in FixUpDynamicType()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/LoongArch/
H A DABISysV_loongarch.cpp493 const uint32_t type_flags = compiler_type.GetTypeInfo(); in GetReturnValueObjectSimple()

12