Home
last modified time | relevance | path

Searched refs:method_iter (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
DTypeSystemClang.cpp4300 auto method_iter = cxx_record_decl->method_begin(); in GetMemberFunctionAtIndex() local
4303 static_cast<size_t>(std::distance(method_iter, method_end))) { in GetMemberFunctionAtIndex()
4304 std::advance(method_iter, idx); in GetMemberFunctionAtIndex()
4306 method_iter->getCanonicalDecl(); in GetMemberFunctionAtIndex()
4336 auto method_iter = class_interface_decl->meth_begin(); in GetMemberFunctionAtIndex() local
4339 static_cast<size_t>(std::distance(method_iter, method_end))) { in GetMemberFunctionAtIndex()
4340 std::advance(method_iter, idx); in GetMemberFunctionAtIndex()
4342 method_iter->getCanonicalDecl(); in GetMemberFunctionAtIndex()
4366 auto method_iter = class_interface_decl->meth_begin(); in GetMemberFunctionAtIndex() local
4369 static_cast<size_t>(std::distance(method_iter, method_end))) { in GetMemberFunctionAtIndex()
[all …]
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
DDWARFASTParserClang.cpp1102 for (auto method_iter = record_decl->method_begin(); in ParseSubroutine() local
1103 method_iter != record_decl->method_end(); in ParseSubroutine()
1104 method_iter++) { in ParseSubroutine()
1105 clang::CXXMethodDecl *method_decl = *method_iter; in ParseSubroutine()