Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/tools/lldb/source/Symbol/
H A DClangASTContext.cpp4709 auto method_iter = cxx_record_decl->method_begin(); in GetMemberFunctionAtIndex() local
4712 static_cast<size_t>(std::distance(method_iter, method_end))) { in GetMemberFunctionAtIndex()
4713 std::advance(method_iter, idx); in GetMemberFunctionAtIndex()
4715 method_iter->getCanonicalDecl(); in GetMemberFunctionAtIndex()
4746 auto method_iter = class_interface_decl->meth_begin(); in GetMemberFunctionAtIndex() local
4749 static_cast<size_t>(std::distance(method_iter, method_end))) { in GetMemberFunctionAtIndex()
4750 std::advance(method_iter, idx); in GetMemberFunctionAtIndex()
4752 method_iter->getCanonicalDecl(); in GetMemberFunctionAtIndex()
4776 auto method_iter = class_interface_decl->meth_begin(); in GetMemberFunctionAtIndex() local
4780 std::advance(method_iter, idx); in GetMemberFunctionAtIndex()
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1480 for (auto method_iter = record_decl->method_begin(); in ParseTypeFromDWARF() local
1481 method_iter != record_decl->method_end(); in ParseTypeFromDWARF()
1482 method_iter++) { in ParseTypeFromDWARF()
1483 clang::CXXMethodDecl *method_decl = *method_iter; in ParseTypeFromDWARF()