Home
last modified time | relevance | path

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

12

/freebsd/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/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()
H A DABISysV_i386.cpp191 } else if (compiler_type.IsPointerType()) { in GetArgumentValues()
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectConstResultImpl.cpp94 if (m_live_address != LLDB_INVALID_ADDRESS && !compiler_type.IsPointerType()) in CreateChildAtIndex()
152 if (m_live_address != LLDB_INVALID_ADDRESS && !compiler_type.IsPointerType()) in CreateSyntheticArrayMember()
H A DValueObject.cpp1129 !GetCompilerType().IsPointerType() && in GetValueAsAPSInt()
1165 val_type.IsPointerType()) { in GetValueAsBool()
1186 !val_type.IsFloat() && !val_type.IsPointerType() && in SetValueFromInteger()
1223 !val_type.IsFloat() && !val_type.IsPointerType() && in SetValueFromInteger()
1239 !new_val_type.IsPointerType()) { in SetValueFromInteger()
1257 } else if (new_val_type.IsPointerType()) { in SetValueFromInteger()
1787 if (IsPointerType() || IsArrayType()) { in GetSyntheticArrayMember()
3035 if (!type.IsPointerType() && !type.IsReferenceType()) in CastDerivedToBaseType()
3045 type.IsPointerType() ? type.GetPointeeType() : type.GetNonReferenceType(); in CastDerivedToBaseType()
3047 start_type.IsPointerType() ? start_type.GetPointeeType() : start_type; in CastDerivedToBaseType()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp203 bool CompilerType::IsPointerType(CompilerType *pointee_type) const { in IsPointerType() function in CompilerType
206 return type_system_sp->IsPointerType(m_type, pointee_type); in IsPointerType()
309 return IsPointerType() && GetPointeeType().IsScalarType(); in IsPointerToScalarType()
405 return IsPointerType() && in IsPointerToVoid()
451 return IsScalarType() || IsUnscopedEnumerationType() || IsPointerType() || in IsContextuallyConvertibleToBool()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBTypeDocstrings.i81 self.assertTrue(task_head_type.IsPointerType())
129 ) lldb::SBType::IsPointerType;
243 If this type is a pointer type as specified by `IsPointerType` then this
H A DSBTypeExtensions.i59 is_pointer = property(IsPointerType, None, doc='''A read only property that returns a boolean value that indicates if this type is a pointer type.''')
/freebsd/contrib/llvm-project/lldb/source/DataFormatters/
H A DFormattersHelpers.cpp120 if (valobj.IsPointerType()) in GetArrayAddressOrPointerValue()
/freebsd/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/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DCoroutines.cpp32 if (!ptr_sp->GetCompilerType().IsPointerType()) in GetCoroFramePtrFromHandle()
/freebsd/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/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/contrib/llvm-project/lldb/include/lldb/API/
H A DSBType.h155 bool IsPointerType();
/freebsd/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/contrib/llvm-project/lldb/source/API/
H A DSBType.cpp148 bool SBType::IsPointerType() { in IsPointerType() function in SBType
153 return m_opaque_sp->GetCompilerType(true).IsPointerType(); in IsPointerType()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObject.h382 bool IsPointerType() { return GetCompilerType().IsPointerType(); } in IsPointerType() function
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DFunctionCaller.cpp212 arg_value->GetCompilerType().IsPointerType()) in WriteFunctionArguments()
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h181 bool IsPointerType(CompilerType *pointee_type = nullptr) const;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/
H A DABIMacOSX_arm.cpp1668 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
1709 compiler_type.IsPointerType()) { in SetReturnValueObject()
H A DABISysV_arm.cpp1616 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
1854 compiler_type.IsPointerType()) { in SetReturnValueObject()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectExpression.cpp394 if (!type.IsPointerType(&pointee)) in CanBeUsedForElementCountPrinting()

12