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.cpp4476 clang::CXXMethodDecl *cxx_method_decl = in GetMemberFunctionAtIndex() local
4478 if (cxx_method_decl) { in GetMemberFunctionAtIndex()
4479 name = cxx_method_decl->getDeclName().getAsString(); in GetMemberFunctionAtIndex()
4480 if (cxx_method_decl->isStatic()) in GetMemberFunctionAtIndex()
4482 else if (llvm::isa<clang::CXXConstructorDecl>(cxx_method_decl)) in GetMemberFunctionAtIndex()
4484 else if (llvm::isa<clang::CXXDestructorDecl>(cxx_method_decl)) in GetMemberFunctionAtIndex()
4488 clang_type = GetType(cxx_method_decl->getType()); in GetMemberFunctionAtIndex()
4489 clang_decl = GetCompilerDecl(cxx_method_decl); in GetMemberFunctionAtIndex()
7680 clang::CXXMethodDecl *cxx_method_decl = nullptr; in AddMethodToCXXRecordType() local
7719 cxx_method_decl = cxx_dtor_decl; in AddMethodToCXXRecordType()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.cpp1232 clang::CXXMethodDecl *cxx_method_decl = m_ast.AddMethodToCXXRecordType( in ParseCXXMethod() local
1238 if (cxx_method_decl) { in ParseCXXMethod()
1239 LinkDeclContextToDIE(cxx_method_decl, die); in ParseCXXMethod()
1247 object_pointer_name, static_cast<void *>(cxx_method_decl)); in ParseCXXMethod()
1249 m_ast.SetMetadata(cxx_method_decl, metadata); in ParseCXXMethod()
1256 const bool type_handled = cxx_method_decl != nullptr || attrs.is_artificial; in ParseCXXMethod()