| /llvm-project-15.0.7/lldb/test/API/python_api/type/ |
| H A D | TestTypeList.py | 67 self.assertTrue(type.IsAggregateType(), "Task is aggregate") 77 self.assertTrue(field.type.IsAggregateType()) 82 self.assertTrue(field.type.IsAggregateType()) 115 self.assertFalse(task_head_type.IsAggregateType()) 130 self.assertFalse(id_type.IsAggregateType()) 144 self.assertTrue(myint_arr_type.IsAggregateType()) 157 self.assertFalse(enum_type.IsAggregateType()) 163 self.assertFalse(scoped_enum_type.IsAggregateType())
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBType.i | 365 ") IsAggregateType; 367 IsAggregateType ();
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 31 bool CompilerType::IsAggregateType() const { in IsAggregateType() function in CompilerType 33 return m_type_system->IsAggregateType(m_type); in IsAggregateType() 789 if (IsAggregateType()) { in GetValueAsScalar()
|
| H A D | Type.cpp | 388 bool Type::IsAggregateType() { in IsAggregateType() function in Type 389 return GetForwardCompilerType().IsAggregateType(); in IsAggregateType()
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBType.h | 136 bool IsAggregateType();
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBType.cpp | 276 bool SBType::IsAggregateType() { in IsAggregateType() function in SBType 281 return m_opaque_sp->GetCompilerType(true).IsAggregateType(); in IsAggregateType()
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 83 bool IsAggregateType() const;
|
| H A D | Type.h | 142 bool IsAggregateType();
|
| H A D | TypeSystem.h | 141 virtual bool IsAggregateType(lldb::opaque_compiler_type_t type) = 0;
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/X86/ |
| H A D | ABISysV_i386.cpp | 603 if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
|
| H A D | ABIWindows_x86_64.cpp | 620 if (!return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
|
| H A D | ABISysV_x86_64.cpp | 636 if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/SystemZ/ |
| H A D | ABISysV_s390x.cpp | 599 if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/Mips/ |
| H A D | ABISysV_mips.cpp | 820 } else if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc.cpp | 664 if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.cpp | 2802 bool TypeSystemClang::IsAggregateType(lldb::opaque_compiler_type_t type) { in IsAggregateType() function in TypeSystemClang 5419 if (pointee_clang_type.IsAggregateType()) in GetNumChildren() 5455 if (pointee_clang_type.IsAggregateType()) in GetNumChildren() 6431 if (transparent_pointers && pointee_clang_type.IsAggregateType()) { in GetChildCompilerTypeAtIndex() 6511 if (transparent_pointers && pointee_clang_type.IsAggregateType()) { in GetChildCompilerTypeAtIndex() 6551 if (transparent_pointers && pointee_clang_type.IsAggregateType()) { in GetChildCompilerTypeAtIndex() 6877 if (pointee_clang_type.IsAggregateType()) { in GetIndexOfChildMemberWithName() 6886 if (pointee_clang_type.IsAggregateType()) { in GetIndexOfChildMemberWithName() 7057 if (pointee_type.IsAggregateType()) { in GetIndexOfChildWithName() 7068 if (pointee_type.IsAggregateType()) { in GetIndexOfChildWithName() [all …]
|
| H A D | TypeSystemClang.h | 548 bool IsAggregateType(lldb::opaque_compiler_type_t type) override;
|
| /llvm-project-15.0.7/lldb/source/Core/ |
| H A D | FormatEntity.cpp | 843 bool is_aggregate = target->GetCompilerType().IsAggregateType(); in DumpValue() 1705 if (var_value_sp->GetCompilerType().IsAggregateType() && in Format()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ABI/ARM/ |
| H A D | ABISysV_arm.cpp | 1594 } else if (compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
|
| /llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangExpressionDeclMap.cpp | 1994 if (copied_clang_type.IsAggregateType() && in AddContextClassType()
|
| /llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/ |
| H A D | lldbtest.py | 2544 str(type.IsAggregateType()) + '\n')
|