Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DScopeInfo.h173 SourceLocation FirstCoroutineStmtLoc; variable
472 bool isCoroutine() const { return !FirstCoroutineStmtLoc.isInvalid(); } in isCoroutine()
475 assert(FirstCoroutineStmtLoc.isInvalid() && in setFirstCoroutineStmt()
477 FirstCoroutineStmtLoc = Loc; in setFirstCoroutineStmt()
485 assert(FirstCoroutineStmtLoc.isValid() in getFirstCoroutineStmtKeyword()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaCoroutine.cpp639 if (ScopeInfo->FirstCoroutineStmtLoc.isInvalid() && !IsImplicit) in checkCoroutineContext()
1109 assert(Fn->FirstCoroutineStmtLoc.isValid() && in CheckCompletedCoroutineBody()
1112 Diag(Fn->FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in CheckCompletedCoroutineBody()
1199 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in diagReturnOnAllocFailure()
1239 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in makeReturnOnAllocFailure()
1515 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in makeOnException()
1542 S.Diag(Fn.FirstCoroutineStmtLoc, diag::note_declared_coroutine_here) in noteMemberDeclaredHere()
H A DScopeInfo.cpp44 FirstCoroutineStmtLoc = SourceLocation(); in Clear()