Home
last modified time | relevance | path

Searched refs:SubDecl (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DODRHash.cpp446 for (Decl *SubDecl : Method->decls()) in VisitObjCMethodDecl()
447 if (ODRHash::isSubDeclToBeProcessed(SubDecl, Method)) in VisitObjCMethodDecl()
448 Decls.push_back(SubDecl); in VisitObjCMethodDecl()
451 for (auto SubDecl : Decls) in VisitObjCMethodDecl() local
452 Hash.AddSubDecl(SubDecl); in VisitObjCMethodDecl()
605 for (Decl *SubDecl : Record->decls()) { in AddCXXRecordDecl()
606 if (isSubDeclToBeProcessed(SubDecl, Record)) { in AddCXXRecordDecl()
607 Decls.push_back(SubDecl); in AddCXXRecordDecl()
608 if (auto *Function = dyn_cast<FunctionDecl>(SubDecl)) { in AddCXXRecordDecl()
616 for (auto SubDecl : Decls) { in AddCXXRecordDecl() local
[all …]
H A DStmtProfile.cpp2136 for (auto *SubDecl : Lambda->decls()) { in VisitLambdaExpr() local
2138 if (auto *FTD = dyn_cast<FunctionTemplateDecl>(SubDecl)) in VisitLambdaExpr()
2140 else if (auto *FD = dyn_cast<FunctionDecl>(SubDecl)) in VisitLambdaExpr()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DModuleMapFile.cpp329 std::optional<Decl> SubDecl; in parseModuleDecl() local
340 SubDecl = parseConfigMacrosDecl(); in parseModuleDecl()
344 SubDecl = parseConflictDecl(); in parseModuleDecl()
348 SubDecl = parseExternModuleDecl(); in parseModuleDecl()
354 SubDecl = parseModuleDecl(false); in parseModuleDecl()
358 SubDecl = parseExportDecl(); in parseModuleDecl()
366 SubDecl = parseExportAsDecl(); in parseModuleDecl()
370 SubDecl = parseUseDecl(); in parseModuleDecl()
374 SubDecl = parseRequiresDecl(); in parseModuleDecl()
378 SubDecl = parseHeaderDecl(MMToken::TextualKeyword, consumeToken()); in parseModuleDecl()
[all …]