Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExpr.cpp327 NamedDecl *FoundD, in DeclRefExpr() argument
342 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
343 if (FoundD) in DeclRefExpr()
344 *getTrailingObjects<NamedDecl *>() = FoundD; in DeclRefExpr()
376 NamedDecl *FoundD, in Create() argument
381 T, VK, FoundD, TemplateArgs); in Create()
392 NamedDecl *FoundD, in Create() argument
395 if (D == FoundD) in Create()
396 FoundD = nullptr; in Create()
402 QualifierLoc ? 1 : 0, FoundD ? 1 : 0, in Create()
[all …]
DASTImporter.cpp5386 NamedDecl *FoundD = nullptr; in VisitDeclRefExpr() local
5388 FoundD = cast_or_null<NamedDecl>(Importer.Import(E->getFoundDecl())); in VisitDeclRefExpr()
5389 if (!FoundD) in VisitDeclRefExpr()
5404 FoundD, in VisitDeclRefExpr()
/external/llvm-project/clang/lib/AST/
DExpr.cpp400 const DeclarationNameInfo &NameInfo, NamedDecl *FoundD, in DeclRefExpr() argument
410 DeclRefExprBits.HasFoundDecl = FoundD ? 1 : 0; in DeclRefExpr()
411 if (FoundD) in DeclRefExpr()
412 *getTrailingObjects<NamedDecl *>() = FoundD; in DeclRefExpr()
438 ExprValueKind VK, NamedDecl *FoundD, in Create() argument
444 T, VK, FoundD, TemplateArgs, NOUR); in Create()
453 NamedDecl *FoundD, in Create() argument
457 if (D == FoundD) in Create()
458 FoundD = nullptr; in Create()
464 QualifierLoc ? 1 : 0, FoundD ? 1 : 0, in Create()
[all …]
DASTImporter.cpp2515 NamedDecl *FoundD; in VisitTypeAliasTemplateDecl() local
2516 if (Error Err = ImportDeclParts(D, DC, LexicalDC, Name, FoundD, Loc)) in VisitTypeAliasTemplateDecl()
2518 if (FoundD) in VisitTypeAliasTemplateDecl()
2519 return FoundD; in VisitTypeAliasTemplateDecl()
/external/clang/include/clang/AST/
DExpr.h968 NamedDecl *FoundD,
999 QualType T, ExprValueKind VK, NamedDecl *FoundD = nullptr,
1007 NamedDecl *FoundD = nullptr,
/external/llvm-project/clang/lib/Sema/
DSemaExprCXX.cpp447 for (NamedDecl *FoundD : FoundDecls) { in getDestructorName()
448 if (auto *TD = dyn_cast<TypeDecl>(FoundD->getUnderlyingDecl())) in getDestructorName()
449 Diag(FoundD->getLocation(), diag::note_destructor_type_here) in getDestructorName()
452 Diag(FoundD->getLocation(), diag::note_destructor_nontype_here) in getDestructorName()
453 << FoundD; in getDestructorName()
DSemaExpr.cpp1946 const CXXScopeSpec *SS, NamedDecl *FoundD, in BuildDeclRefExpr() argument
1951 return BuildDeclRefExpr(D, Ty, VK, NameInfo, NNS, FoundD, TemplateKWLoc, in BuildDeclRefExpr()
2017 NestedNameSpecifierLoc NNS, NamedDecl *FoundD, in BuildDeclRefExpr() argument
2026 VK, FoundD, TemplateArgs, getNonOdrUseReasonInCurrentContext(D)); in BuildDeclRefExpr()
3197 NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs, in BuildDeclarationNameExpr() argument
3442 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD, in BuildDeclarationNameExpr()
DSemaTemplate.cpp230 for (NamedDecl *FoundD : R) { in isTemplateName()
231 if (NamedDecl *FoundTemplate = getAsTemplateNameDecl(FoundD)) { in isTemplateName()
/external/llvm-project/clang/include/clang/AST/
DExpr.h1248 const DeclarationNameInfo &NameInfo, NamedDecl *FoundD,
1266 QualType T, ExprValueKind VK, NamedDecl *FoundD = nullptr,
1275 NamedDecl *FoundD = nullptr,
/external/llvm-project/clang/lib/Serialization/
DASTReaderStmt.cpp1037 auto *FoundD = Record.readDeclAs<NamedDecl>(); in VisitMemberExpr() local
1039 FoundDecl = DeclAccessPair::make(FoundD, AS); in VisitMemberExpr()
/external/llvm-project/clang/lib/CodeGen/
DCGOpenMPRuntime.cpp12154 const Decl *FoundD = nullptr; member in __anonbe229beb5b11::LastprivateConditionalRefChecker
12170 FoundD = E->getDecl()->getCanonicalDecl(); in VisitDeclRefExpr()
12189 FoundD = E->getMemberDecl()->getCanonicalDecl(); in VisitMemberExpr()
12214 return std::make_tuple(FoundE, FoundD, UniqueDeclName, IVLVal, FoundFn); in getFoundData()
12314 const Decl *FoundD; in checkAndEmitLastprivateConditional() local
12318 std::tie(FoundE, FoundD, UniqueDeclName, IVLVal, FoundFn) = in checkAndEmitLastprivateConditional()
12323 auto It = LastprivateConditionalToTypes[FoundFn].find(FoundD); in checkAndEmitLastprivateConditional()
/external/clang/lib/Serialization/
DASTReaderStmt.cpp3032 NamedDecl *FoundD = ReadDeclAs<NamedDecl>(F, Record, Idx); in ReadStmtFromStream() local
3034 DeclAccessPair FoundDecl = DeclAccessPair::make(FoundD, AS); in ReadStmtFromStream()
/external/clang/lib/Sema/
DSemaExpr.cpp1736 const CXXScopeSpec *SS, NamedDecl *FoundD, in BuildDeclRefExpr() argument
1764 FoundD, TemplateArgs); in BuildDeclRefExpr()
1771 NameInfo, Ty, VK, FoundD); in BuildDeclRefExpr()
2835 NamedDecl *FoundD, const TemplateArgumentListInfo *TemplateArgs, in BuildDeclarationNameExpr() argument
3040 return BuildDeclRefExpr(VD, type, valueKind, NameInfo, &SS, FoundD, in BuildDeclarationNameExpr()
/external/llvm-project/clang/include/clang/Sema/
DSema.h4980 NamedDecl *FoundD = nullptr,
4987 NamedDecl *FoundD = nullptr,
5031 NamedDecl *FoundD = nullptr,
/external/clang/include/clang/Sema/
DSema.h3804 NamedDecl *FoundD = nullptr,
3847 NamedDecl *FoundD = nullptr,