| /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/ValueObject/ |
| H A D | DILEval.cpp | 242 if (!base->IsPointerType() && base->HasSyntheticValue()) { in Visit() 267 bool base_is_ptr = base->IsPointerType(); in Visit() 317 if (node->GetIsArrow() && base->IsPointerType()) in Visit() 355 if (!base_type.IsPointerType() && !base_type.IsArrayType()) in Visit()
|
| H A D | ValueObjectConstResultImpl.cpp | 93 if (m_live_address != LLDB_INVALID_ADDRESS && !compiler_type.IsPointerType()) in CreateChildAtIndex() 151 if (m_live_address != LLDB_INVALID_ADDRESS && !compiler_type.IsPointerType()) in CreateSyntheticArrayMember()
|
| H A D | ValueObject.cpp | 1151 !GetCompilerType().IsPointerType() && in GetValueAsAPSInt() 1187 val_type.IsPointerType()) { in GetValueAsBool() 1208 !val_type.IsFloat() && !val_type.IsPointerType() && in SetValueFromInteger() 1248 !val_type.IsFloat() && !val_type.IsPointerType() && in SetValueFromInteger() 1266 !new_val_type.IsPointerType()) { in SetValueFromInteger() 1284 } else if (new_val_type.IsPointerType()) { in SetValueFromInteger() 1820 if (IsPointerType() || IsArrayType()) { in GetSyntheticArrayMember() 2997 if (!type.IsPointerType() && !type.IsReferenceType()) in CastDerivedToBaseType() 3007 type.IsPointerType() ? type.GetPointeeType() : type.GetNonReferenceType(); in CastDerivedToBaseType() 3009 start_type.IsPointerType() ? start_type.GetPointeeType() : start_type; in CastDerivedToBaseType() [all …]
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/X86/ |
| H A D | ABIMacOSX_i386.cpp | 175 else if (compiler_type.IsPointerType()) in GetArgumentValues() 208 compiler_type.IsPointerType()) { in SetReturnValueObject() 338 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| H A D | ABIWindows_x86_64.cpp | 288 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 322 compiler_type.IsPointerType()) { in SetReturnValueObject() 584 field_compiler_type.IsPointerType() || in FlattenAggregateType() 693 field_compiler_type.IsPointerType() || in GetReturnValueObjectImpl()
|
| H A D | ABISysV_x86_64.cpp | 283 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 317 compiler_type.IsPointerType()) { in SetReturnValueObject() 608 field_compiler_type.IsPointerType() || in FlattenAggregateType() 715 field_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 205 bool CompilerType::IsPointerType(CompilerType *pointee_type) const { in IsPointerType() function in CompilerType 208 return type_system_sp->IsPointerType(m_type, pointee_type); in IsPointerType() 311 return IsPointerType() && GetPointeeType().IsScalarType(); in IsPointerToScalarType() 407 return IsPointerType() && in IsPointerToVoid() 453 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 | 118 if (valobj.IsPointerType()) in GetArrayAddressOrPointerValue()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | Coroutines.cpp | 30 if (!ptr_sp->GetCompilerType().IsPointerType()) in GetCoroFramePtrFromHandle()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc.cpp | 407 else if (compiler_type.IsPointerType()) in GetArgumentValues() 436 compiler_type.IsPointerType()) { in SetReturnValueObject() 720 field_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| H A D | ABISysV_ppc64.cpp | 285 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 319 compiler_type.IsPointerType()) { in SetReturnValueObject()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/SystemZ/ |
| H A D | ABISysV_s390x.cpp | 369 } else if (compiler_type.IsPointerType()) { in GetArgumentValues() 403 compiler_type.IsPointerType()) { in SetReturnValueObject()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
| H A D | SBType.h | 155 bool IsPointerType();
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StackFrame.cpp | 638 if (!compiler_type.IsPointerType()) in LegacyGetValueForVariableExpressionPath() 712 if (!valobj_sp->IsPointerType() && valobj_sp->HasSyntheticValue()) { in LegacyGetValueForVariableExpressionPath() 745 const bool actual_is_ptr = valobj_sp->IsPointerType(); in LegacyGetValueForVariableExpressionPath() 888 if (valobj_sp->IsPointerType()) { in LegacyGetValueForVariableExpressionPath() 894 else if (!valobj_sp->GetCompilerType().IsPointerType()) in LegacyGetValueForVariableExpressionPath()
|
| /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()
|
| H A D | SBValue.cpp | 691 (value_sp->IsPointerType() || value_sp->IsArrayType())) in GetChildAtIndex() 1029 return GetType().IsPointerType(); in TypeIsPointerType() 1537 if (IsInScope() && GetType().IsPointerType()) in WatchPointee()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/Mips/ |
| H A D | ABISysV_mips.cpp | 718 compiler_type.IsPointerType()) { in SetReturnValueObject() 849 } else if (return_compiler_type.IsPointerType()) { in GetReturnValueObjectImpl()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/ValueObject/ |
| 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 | 211 arg_value->GetCompilerType().IsPointerType()) in WriteFunctionArguments()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 182 bool IsPointerType(CompilerType *pointee_type = nullptr) const;
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ABI/ARM/ |
| H A D | ABIMacOSX_arm.cpp | 1664 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl() 1705 compiler_type.IsPointerType()) { in SetReturnValueObject()
|
| H A D | ABISysV_arm.cpp | 1612 } else if (compiler_type.IsPointerType()) { in GetReturnValueObjectImpl() 1851 compiler_type.IsPointerType()) { in SetReturnValueObject()
|