Home
last modified time | relevance | path

Searched refs:IsAggregateType (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/type/
H A DTestTypeList.py67 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 DSBType.i365 ") IsAggregateType;
367 IsAggregateType ();
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp31 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 DType.cpp388 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 DSBType.h136 bool IsAggregateType();
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp276 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 DCompilerType.h83 bool IsAggregateType() const;
H A DType.h142 bool IsAggregateType();
H A DTypeSystem.h141 virtual bool IsAggregateType(lldb::opaque_compiler_type_t type) = 0;
/llvm-project-15.0.7/lldb/source/Plugins/ABI/X86/
H A DABISysV_i386.cpp603 if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
H A DABIWindows_x86_64.cpp620 if (!return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
H A DABISysV_x86_64.cpp636 if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/SystemZ/
H A DABISysV_s390x.cpp599 if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/Mips/
H A DABISysV_mips.cpp820 } else if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
/llvm-project-15.0.7/lldb/source/Plugins/ABI/PowerPC/
H A DABISysV_ppc.cpp664 if (return_compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp2802 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 DTypeSystemClang.h548 bool IsAggregateType(lldb::opaque_compiler_type_t type) override;
/llvm-project-15.0.7/lldb/source/Core/
H A DFormatEntity.cpp843 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 DABISysV_arm.cpp1594 } else if (compiler_type.IsAggregateType()) { in GetReturnValueObjectImpl()
/llvm-project-15.0.7/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1994 if (copied_clang_type.IsAggregateType() && in AddContextClassType()
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Dlldbtest.py2544 str(type.IsAggregateType()) + '\n')