| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/ObjC/ |
| H A D | CF.cpp | 81 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 D | ABIMacOSX_i386.cpp | 174 else if (compiler_type.IsPointerType()) in GetArgumentValues() 207 compiler_type.IsPointerType()) { in SetReturnValueObject() 335 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| H A D | ABIWindows_x86_64.cpp | 287 } 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 D | ABISysV_x86_64.cpp | 280 } 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 D | ABISysV_i386.cpp | 191 } else if (compiler_type.IsPointerType()) { in GetArgumentValues()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | ValueObjectConstResultImpl.cpp | 94 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 D | ValueObject.cpp | 1129 !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 D | CompilerType.cpp | 203 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 D | SBTypeDocstrings.i | 81 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 D | SBTypeExtensions.i | 59 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 D | FormattersHelpers.cpp | 120 if (valobj.IsPointerType()) in GetArrayAddressOrPointerValue()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc.cpp | 406 else if (compiler_type.IsPointerType()) in GetArgumentValues() 439 compiler_type.IsPointerType()) { in SetReturnValueObject() 722 field_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| H A D | ABISysV_ppc64.cpp | 284 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 318 compiler_type.IsPointerType()) { in SetReturnValueObject()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | Coroutines.cpp | 32 if (!ptr_sp->GetCompilerType().IsPointerType()) in GetCoroFramePtrFromHandle()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/ |
| H A D | ABISysV_s390x.cpp | 368 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 402 compiler_type.IsPointerType()) { in SetReturnValueObject()
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StackFrame.cpp | 577 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 D | SBType.h | 155 bool IsPointerType();
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ |
| H A D | ABISysV_mips.cpp | 724 compiler_type.IsPointerType()) { in SetReturnValueObject() 853 } else if (return_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBType.cpp | 148 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 D | ValueObject.h | 382 bool IsPointerType() { return GetCompilerType().IsPointerType(); } in IsPointerType() function
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | FunctionCaller.cpp | 212 arg_value->GetCompilerType().IsPointerType()) in WriteFunctionArguments()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 181 bool IsPointerType(CompilerType *pointee_type = nullptr) const;
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/ |
| H A D | ABIMacOSX_arm.cpp | 1668 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl() 1709 compiler_type.IsPointerType()) { in SetReturnValueObject()
|
| H A D | ABISysV_arm.cpp | 1616 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl() 1854 compiler_type.IsPointerType()) { in SetReturnValueObject()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectExpression.cpp | 394 if (!type.IsPointerType(&pointee)) in CanBeUsedForElementCountPrinting()
|