Home
last modified time | relevance | path

Searched refs:FoundD (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DExpr.cpp452 const DeclarationNameInfo &NameInfo, NamedDecl *FoundD, in DeclRefExpr() argument
462 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
463 if (FoundD) in DeclRefExpr()
464 *getTrailingObjects<NamedDecl *>() = FoundD; in DeclRefExpr()
492 ExprValueKind VK, NamedDecl *FoundD, in Create() argument
498 T, VK, FoundD, TemplateArgs, NOUR); in Create()
507 NamedDecl *FoundD, in Create() argument
511 if (D == FoundD) in Create()
512 FoundD = nullptr; in Create()
518 QualifierLoc ? 1 : 0, FoundD ? 1 : 0, in Create()
[all …]
H A DASTImporter.cpp3089 NamedDecl *FoundD; in VisitTypeAliasTemplateDecl() local
3090 if (Error Err = ImportDeclParts(D, DC, LexicalDC, Name, FoundD, Loc)) in VisitTypeAliasTemplateDecl()
3092 if (FoundD) in VisitTypeAliasTemplateDecl()
3093 return FoundD; in VisitTypeAliasTemplateDecl()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaExprCXX.cpp437 for (NamedDecl *FoundD : FoundDecls) { in getDestructorName()
438 if (auto *TD = dyn_cast<TypeDecl>(FoundD->getUnderlyingDecl())) in getDestructorName()
439 Diag(FoundD->getLocation(), diag::note_destructor_type_here) in getDestructorName()
442 Diag(FoundD->getLocation(), diag::note_destructor_nontype_here) in getDestructorName()
443 << FoundD; in getDestructorName()
H A DSemaTemplate.cpp236 for (NamedDecl *FoundD : R) { in isTemplateName()
237 if (NamedDecl *FoundTemplate = getAsTemplateNameDecl(FoundD)) { in isTemplateName()
242 FoundUsingShadow = dyn_cast<UsingShadowDecl>(FoundD); in isTemplateName()
4677 VarTemplateDecl *Template, NamedDecl *FoundD, SourceLocation TemplateLoc, in CheckVarTemplateId() argument
4694 return BuildDeclarationNameExpr(SS, NameInfo, Var, FoundD, TemplateArgs); in CheckVarTemplateId()
H A DSemaExpr.cpp2303 const CXXScopeSpec *SS, NamedDecl *FoundD, in BuildDeclRefExpr() argument
2308 return BuildDeclRefExpr(D, Ty, VK, NameInfo, NNS, FoundD, TemplateKWLoc, in BuildDeclRefExpr()
2372 NestedNameSpecifierLoc NNS, NamedDecl *FoundD, in BuildDeclRefExpr() argument
2380 VK, FoundD, TemplateArgs, getNonOdrUseReasonInCurrentContext(D)); in BuildDeclRefExpr()
3256 NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs, in BuildDeclarationNameExpr() argument
3491 BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD, in BuildDeclarationNameExpr()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DExpr.h1299 const DeclarationNameInfo &NameInfo, NamedDecl *FoundD,
1317 QualType T, ExprValueKind VK, NamedDecl *FoundD = nullptr,
1326 NamedDecl *FoundD = nullptr,
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.cpp11745 const Decl *FoundD = nullptr; member in __anon93cce0fb5c11::LastprivateConditionalRefChecker
11761 FoundD = E->getDecl()->getCanonicalDecl(); in VisitDeclRefExpr()
11780 FoundD = E->getMemberDecl()->getCanonicalDecl(); in VisitMemberExpr()
11805 return std::make_tuple(FoundE, FoundD, UniqueDeclName, IVLVal, FoundFn); in getFoundData()
11906 const Decl *FoundD; in checkAndEmitLastprivateConditional() local
11910 std::tie(FoundE, FoundD, UniqueDeclName, IVLVal, FoundFn) = in checkAndEmitLastprivateConditional()
11915 auto It = LastprivateConditionalToTypes[FoundFn].find(FoundD); in checkAndEmitLastprivateConditional()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h7171 NamedDecl *FoundD = nullptr,
7180 NestedNameSpecifierLoc NNS, NamedDecl *FoundD = nullptr,
7202 NamedDecl *FoundD = nullptr,
11645 VarTemplateDecl *Template, NamedDecl *FoundD,
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp1081 auto *FoundD = Record.readDeclAs<NamedDecl>(); in VisitMemberExpr() local
1083 *E->getTrailingObjects<DeclAccessPair>() = DeclAccessPair::make(FoundD, AS); in VisitMemberExpr()