Home
last modified time | relevance | path

Searched refs:IsPointerType (Results 1 – 25 of 37) sorted by relevance

12

/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/
H A DCF.cpp81 if (valobj.IsPointerType()) in CFBagSummaryProvider()
136 if (valobj.IsPointerType()) in CFBitVectorSummaryProvider()
264 if (valobj.IsPointerType()) in CFBinaryHeapSummaryProvider()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/X86/
H A DABIMacOSX_i386.cpp174 else if (compiler_type.IsPointerType()) in GetArgumentValues()
207 compiler_type.IsPointerType()) { in SetReturnValueObject()
335 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
H A DABIWindows_x86_64.cpp287 } else if (compiler_type.IsPointerType()) { in GetArgumentValues()
321 compiler_type.IsPointerType()) { in SetReturnValueObject()
581 field_compiler_type.IsPointerType() || in FlattenAggregateType()
686 field_compiler_type.IsPointerType() || in GetReturnValueObjectImpl()
H A DABISysV_x86_64.cpp280 } else if (compiler_type.IsPointerType()) { in GetArgumentValues()
314 compiler_type.IsPointerType()) { in SetReturnValueObject()
603 field_compiler_type.IsPointerType() || in FlattenAggregateType()
706 field_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
/freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp182 bool CompilerType::IsPointerType(CompilerType *pointee_type) const { in IsPointerType() function in CompilerType
185 return type_system_sp->IsPointerType(m_type, pointee_type); in IsPointerType()
288 return IsPointerType() && GetPointeeType().IsScalarType(); in IsPointerToScalarType()
384 return IsPointerType() && in IsPointerToVoid()
430 return IsScalarType() || IsUnscopedEnumerationType() || IsPointerType() || in IsContextuallyConvertibleToBool()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/interface/
H A DSBTypeDocstrings.i129 ) lldb::SBType::IsPointerType;
H A DSBTypeExtensions.i59 …is_pointer = property(IsPointerType, None, doc='''A read only property that returns a boolean valu…
/freebsd-14.2/contrib/llvm-project/lldb/source/Core/
H A DValueObjectConstResultImpl.cpp99 if (!compiler_type.IsPointerType()) in CreateChildAtIndex()
/freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp120 if (valobj.IsPointerType()) in GetArrayAddressOrPointerValue()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCoroutines.cpp30 if (!ptr_sp->GetCompilerType().IsPointerType()) in GetCoroFramePtrFromHandle()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.cpp406 else if (compiler_type.IsPointerType()) in GetArgumentValues()
439 compiler_type.IsPointerType()) { in SetReturnValueObject()
722 field_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
H A DABISysV_ppc64.cpp284 } else if (compiler_type.IsPointerType()) { in GetArgumentValues()
318 compiler_type.IsPointerType()) { in SetReturnValueObject()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/API/
H A DSBType.h124 bool IsPointerType();
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.cpp368 } else if (compiler_type.IsPointerType()) { in GetArgumentValues()
402 compiler_type.IsPointerType()) { in SetReturnValueObject()
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp577 if (!compiler_type.IsPointerType()) in GetValueForVariableExpressionPath()
651 if (!valobj_sp->IsPointerType() && valobj_sp->HasSyntheticValue()) { in GetValueForVariableExpressionPath()
687 const bool actual_is_ptr = valobj_sp->IsPointerType(); in GetValueForVariableExpressionPath()
830 if (valobj_sp->IsPointerType()) { in GetValueForVariableExpressionPath()
836 else if (!valobj_sp->GetCompilerType().IsPointerType()) in GetValueForVariableExpressionPath()
/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBType.cpp130 bool SBType::IsPointerType() { in IsPointerType() function in SBType
135 return m_opaque_sp->GetCompilerType(true).IsPointerType(); in IsPointerType()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips.cpp724 compiler_type.IsPointerType()) { in SetReturnValueObject()
853 } else if (return_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h382 bool IsPointerType() { return GetCompilerType().IsPointerType(); } in IsPointerType() function
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h181 bool IsPointerType(CompilerType *pointee_type = nullptr) const;
H A DTypeSystem.h195 virtual bool IsPointerType(lldb::opaque_compiler_type_t type,
/freebsd-14.2/contrib/llvm-project/lldb/source/Expression/
H A DFunctionCaller.cpp214 arg_value->GetCompilerType().IsPointerType()) in WriteFunctionArguments()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABISysV_arm.cpp1616 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
1854 compiler_type.IsPointerType()) { in SetReturnValueObject()
H A DABIMacOSX_arm.cpp1668 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
1709 compiler_type.IsPointerType()) { in SetReturnValueObject()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp75 if (!compiler_type.IsIntegerType(is_signed) && !compiler_type.IsPointerType()) in GetObjectDescription()
/freebsd-14.2/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp406 if (!type.IsPointerType(&pointee)) in CanBeUsedForElementCountPrinting()

12