Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h183 SourceLocation FirstCoroutineStmtLoc; variable
502 bool isCoroutine() const { return !FirstCoroutineStmtLoc.isInvalid(); } in isCoroutine()
505 assert(FirstCoroutineStmtLoc.isInvalid() && in setFirstCoroutineStmt()
507 FirstCoroutineStmtLoc = Loc; in setFirstCoroutineStmt()
519 assert(FirstCoroutineStmtLoc.isValid() in getFirstCoroutineStmtKeyword()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaCoroutine.cpp593 if (ScopeInfo->FirstCoroutineStmtLoc.isInvalid() && !IsImplicit) in checkCoroutineContext()
1125 assert(Fn->FirstCoroutineStmtLoc.isValid() && in CheckCompletedCoroutineBody()
1128 Diag(Fn->FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in CheckCompletedCoroutineBody()
1233 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in diagReturnOnAllocFailure()
1276 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in makeReturnOnAllocFailure()
1705 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in makeOnException()
1733 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in noteMemberDeclaredHere()
H A DScopeInfo.cpp46 FirstCoroutineStmtLoc = SourceLocation(); in Clear()