Home
last modified time | relevance | path

Searched refs:GetMemberFunctionAtIndex (Results 1 – 9 of 9) sorted by relevance

/llvm-project-15.0.7/lldb/test/API/python_api/class_members/
H A DTestSBTypeClassMembers.py61 self.assertEquals("int", Derived.GetMemberFunctionAtIndex(0).GetType(
68 self.assertEquals(3, Base.GetMemberFunctionAtIndex(3).GetType(
71 self.assertEquals("sfunc", Base.GetMemberFunctionAtIndex(
74 Base.GetMemberFunctionAtIndex(3).GetKind(),
76 self.assertEquals(0, Base.GetMemberFunctionAtIndex(2).GetType(
80 Base.GetMemberFunctionAtIndex(1).GetType().GetFunctionArgumentTypes(
84 Base.GetMemberFunctionAtIndex(1).GetName(), "Base::bar not found")
93 self.assertEquals("id", Thingy.GetMemberFunctionAtIndex(
96 Thingy.GetMemberFunctionAtIndex(1).GetNumberOfArguments(),
99 Thingy.GetMemberFunctionAtIndex(1).GetArgumentTypeAtIndex(
[all …]
/llvm-project-15.0.7/lldb/bindings/interface/
H A DSBType.i848 ") GetMemberFunctionAtIndex;
850 GetMemberFunctionAtIndex (uint32_t idx);
/llvm-project-15.0.7/lldb/include/lldb/API/
H A DSBType.h195 lldb::SBTypeMemberFunction GetMemberFunctionAtIndex(uint32_t idx);
/llvm-project-15.0.7/lldb/source/API/
H A DSBType.cpp319 lldb::SBTypeMemberFunction SBType::GetMemberFunctionAtIndex(uint32_t idx) { in GetMemberFunctionAtIndex() function in SBType
325 m_opaque_sp->GetCompilerType(true).GetMemberFunctionAtIndex(idx))); in GetMemberFunctionAtIndex()
/llvm-project-15.0.7/lldb/source/Symbol/
H A DCompilerType.cpp387 TypeMemberFunctionImpl CompilerType::GetMemberFunctionAtIndex(size_t idx) { in GetMemberFunctionAtIndex() function in CompilerType
389 return m_type_system->GetMemberFunctionAtIndex(m_type, idx); in GetMemberFunctionAtIndex()
/llvm-project-15.0.7/lldb/include/lldb/Symbol/
H A DCompilerType.h205 TypeMemberFunctionImpl GetMemberFunctionAtIndex(size_t idx);
H A DTypeSystem.h246 GetMemberFunctionAtIndex(lldb::opaque_compiler_type_t type, size_t idx) = 0;
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h686 GetMemberFunctionAtIndex(lldb::opaque_compiler_type_t type,
H A DTypeSystemClang.cpp4404 TypeSystemClang::GetMemberFunctionAtIndex(lldb::opaque_compiler_type_t type, in GetMemberFunctionAtIndex() function in TypeSystemClang