Searched refs:decl_name (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
H A D | ClangASTSource.cpp | 108 std::string decl_name(clang_decl_name.getAsString()); in FindExternalVisibleDeclsByName() local 158 if (!decl_name.empty() && decl_name[0] == '$') { in FindExternalVisibleDeclsByName() 166 ConstString const_decl_name(decl_name.c_str()); in FindExternalVisibleDeclsByName() 710 const DeclarationName &decl_name(context.m_decl_name); in FindObjCMethodDeclsWithOrigin() local 715 if (decl_name.isObjCZeroArgSelector()) { in FindObjCMethodDeclsWithOrigin() 717 &original_ctx->Idents.get(decl_name.getAsString()); in FindObjCMethodDeclsWithOrigin() 719 } else if (decl_name.isObjCOneArgSelector()) { in FindObjCMethodDeclsWithOrigin() 720 const std::string &decl_name_string = decl_name.getAsString(); in FindObjCMethodDeclsWithOrigin() 729 clang::Selector sel = decl_name.getObjCSelector(); in FindObjCMethodDeclsWithOrigin() 876 const DeclarationName &decl_name(context.m_decl_name); in FindObjCMethodDecls() local [all …]
|
H A D | NameSearchContext.cpp | 71 // Pass the identifier info for functions the decl_name is needed for in AddFunDecl() 73 clang::DeclarationName decl_name = in AddFunDecl() local 79 ast, context, SourceLocation(), SourceLocation(), decl_name, qual_type, in AddFunDecl() 120 TypeSystemClang::IsOperator(decl_name.getAsString().c_str(), op_kind)) { in AddFunDecl()
|
H A D | ClangExpressionDeclMap.cpp | 1578 std::string decl_name(context.m_decl_name.getAsString()); in AddExpressionVariable() local 1579 ConstString entity_name(decl_name.c_str()); in AddExpressionVariable() 1726 std::string decl_name(context.m_decl_name.getAsString()); in AddOneGenericVariable() local 1727 ConstString entity_name(decl_name.c_str()); in AddOneGenericVariable() 1751 LLDB_LOG(log, " CEDM::FEVD Found variable {0}, returned\n{1}", decl_name, in AddOneGenericVariable() 1779 std::string decl_name(context.m_decl_name.getAsString()); in AddOneRegister() local 1780 entity->SetName(ConstString(decl_name.c_str())); in AddOneRegister() 1927 std::string decl_name(context.m_decl_name.getAsString()); in AddOneFunction() local 1928 entity->SetName(ConstString(decl_name.c_str())); in AddOneFunction() 1960 (function ? "specific" : "generic"), decl_name, ss.GetData(), in AddOneFunction()
|
H A D | IRForTarget.cpp | 890 StringRef decl_name(decl->getName()); in RewritePersistentAlloc() local 891 lldb_private::ConstString persistent_variable_name(decl_name.data(), in RewritePersistentAlloc() 892 decl_name.size()); in RewritePersistentAlloc()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
H A D | AppleObjCDeclVendor.cpp | 548 clang::DeclarationName decl_name = in FindDecls() local 552 ast_ctx.getTranslationUnitDecl()->lookup(decl_name); in FindDecls()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
H A D | TypeSystemClang.cpp | 1553 DeclarationName decl_name(&identifier_info); in CreateClassTemplateDecl() local 1556 clang::DeclContext::lookup_result result = decl_ctx->lookup(decl_name); in CreateClassTemplateDecl() 1583 template_cxx_decl->setDeclName(decl_name); in CreateClassTemplateDecl() 1600 class_template_decl->setDeclName(decl_name); in CreateClassTemplateDecl() 1860 DeclarationName decl_name(&identifier_info); in GetUniqueNamespaceDeclaration() local 1861 clang::DeclContext::lookup_result result = decl_ctx->lookup(decl_name); in GetUniqueNamespaceDeclaration() 6037 clang::DeclarationName decl_name(&getASTContext().Idents.get(name)); in GetStaticFieldWithName() local 6038 for (NamedDecl *decl : record_decl->lookup(decl_name)) { in GetStaticFieldWithName() 6767 clang::DeclarationName decl_name(&ident_ref); in GetIndexOfChildMemberWithName() local 6771 [decl_name](const clang::CXXBaseSpecifier *specifier, in GetIndexOfChildMemberWithName() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
H A D | PDBASTParser.cpp | 333 clang::DeclarationName decl_name = ast.DeclarationNames.getIdentifier(&ident); in GetDeclFromContextByName() local 334 clang::DeclContext::lookup_result result = decl_context.lookup(decl_name); in GetDeclFromContextByName()
|