Home
last modified time | relevance | path

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

/external/llvm-project/lldb/test/API/python_api/class_members/
DTestSBTypeClassMembers.py64 self.assertEquals("int", Derived.GetMemberFunctionAtIndex(0).GetType(
71 self.assertEquals(3, Base.GetMemberFunctionAtIndex(3).GetType(
74 self.assertEquals("sfunc", Base.GetMemberFunctionAtIndex(
77 Base.GetMemberFunctionAtIndex(3).GetKind(),
79 self.assertEquals(0, Base.GetMemberFunctionAtIndex(2).GetType(
83 Base.GetMemberFunctionAtIndex(1).GetType().GetFunctionArgumentTypes(
87 Base.GetMemberFunctionAtIndex(1).GetName(), "Base::bar not found")
96 self.assertEquals("id", Thingy.GetMemberFunctionAtIndex(
99 Thingy.GetMemberFunctionAtIndex(1).GetNumberOfArguments(),
102 Thingy.GetMemberFunctionAtIndex(1).GetArgumentTypeAtIndex(
[all …]
/external/llvm-project/lldb/source/API/
DSBType.cpp310 lldb::SBTypeMemberFunction SBType::GetMemberFunctionAtIndex(uint32_t idx) { in GetMemberFunctionAtIndex() function in SBType
312 GetMemberFunctionAtIndex, (uint32_t), idx); in GetMemberFunctionAtIndex()
317 m_opaque_sp->GetCompilerType(true).GetMemberFunctionAtIndex(idx))); in GetMemberFunctionAtIndex()
943 GetMemberFunctionAtIndex, (uint32_t)); in RegisterMethods()
/external/llvm-project/lldb/include/lldb/API/
DSBType.h186 lldb::SBTypeMemberFunction GetMemberFunctionAtIndex(uint32_t idx);
/external/llvm-project/lldb/include/lldb/Symbol/
DCompilerType.h198 TypeMemberFunctionImpl GetMemberFunctionAtIndex(size_t idx);
DTypeSystem.h242 GetMemberFunctionAtIndex(lldb::opaque_compiler_type_t type, size_t idx) = 0;
/external/llvm-project/lldb/source/Symbol/
DCompilerType.cpp375 TypeMemberFunctionImpl CompilerType::GetMemberFunctionAtIndex(size_t idx) { in GetMemberFunctionAtIndex() function in CompilerType
377 return m_type_system->GetMemberFunctionAtIndex(m_type, idx); in GetMemberFunctionAtIndex()
/external/llvm-project/lldb/bindings/interface/
DSBType.i311 GetMemberFunctionAtIndex (uint32_t idx);
/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.h700 GetMemberFunctionAtIndex(lldb::opaque_compiler_type_t type,
DTypeSystemClang.cpp4282 TypeSystemClang::GetMemberFunctionAtIndex(lldb::opaque_compiler_type_t type, in GetMemberFunctionAtIndex() function in TypeSystemClang