Home
last modified time | relevance | path

Searched refs:PromiseRecordDecl (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp1171 PromiseRecordDecl = Fn.CoroutinePromise->getType()->getAsCXXRecordDecl(); in CoroutineStmtBuilder()
1172 assert(PromiseRecordDecl && "Type should have already been checked"); in CoroutineStmtBuilder()
1216 CXXRecordDecl *PromiseRecordDecl, in diagReturnOnAllocFailure() argument
1232 << PromiseRecordDecl; in diagReturnOnAllocFailure()
1254 if (!S.LookupQualifiedName(Found, PromiseRecordDecl)) in makeReturnOnAllocFailure()
1263 if (!diagReturnOnAllocFailure(S, DeclNameExpr.get(), PromiseRecordDecl, Fn)) in makeReturnOnAllocFailure()
1628 lookupMember(S, "return_void", PromiseRecordDecl, Loc, HasRVoid); in makeOnFallthrough()
1630 lookupMember(S, "return_value", PromiseRecordDecl, Loc, HasRValue); in makeOnFallthrough()
1637 << PromiseRecordDecl; in makeOnFallthrough()
1656 Fallthrough = S.ActOnNullStmt(PromiseRecordDecl->getLocation()); in makeOnFallthrough()
[all …]
H A DCoroutineStmtBuilder.h32 CXXRecordDecl *PromiseRecordDecl = nullptr; variable