Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp4445 clang::CXXMethodDecl *cxx_method_decl = in GetMemberFunctionAtIndex() local
4447 if (cxx_method_decl) { in GetMemberFunctionAtIndex()
4448 name = cxx_method_decl->getDeclName().getAsString(); in GetMemberFunctionAtIndex()
4449 if (cxx_method_decl->isStatic()) in GetMemberFunctionAtIndex()
4451 else if (llvm::isa<clang::CXXConstructorDecl>(cxx_method_decl)) in GetMemberFunctionAtIndex()
4453 else if (llvm::isa<clang::CXXDestructorDecl>(cxx_method_decl)) in GetMemberFunctionAtIndex()
4457 clang_type = GetType(cxx_method_decl->getType()); in GetMemberFunctionAtIndex()
4458 clang_decl = GetCompilerDecl(cxx_method_decl); in GetMemberFunctionAtIndex()
7730 clang::CXXMethodDecl *cxx_method_decl = nullptr; in AddMethodToCXXRecordType() local
7769 cxx_method_decl = cxx_dtor_decl; in AddMethodToCXXRecordType()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1141 clang::CXXMethodDecl *cxx_method_decl = m_ast.AddMethodToCXXRecordType( in ParseCXXMethod() local
1147 if (cxx_method_decl) { in ParseCXXMethod()
1148 LinkDeclContextToDIE(cxx_method_decl, die); in ParseCXXMethod()
1158 object_pointer_name, static_cast<void *>(cxx_method_decl)); in ParseCXXMethod()
1160 m_ast.SetMetadata(cxx_method_decl, metadata); in ParseCXXMethod()
1167 const bool type_handled = cxx_method_decl != nullptr || attrs.is_artificial; in ParseCXXMethod()