reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/include/clang/Sema/ScopeInfo.h
  471     assert((!value || CoroutineSuspends.first == nullptr) &&
  477     return !NeedsCoroutineSuspends && CoroutineSuspends.first == nullptr;
  482     assert(CoroutineSuspends.first == nullptr && "suspend points already set");
  484     CoroutineSuspends.first = Initial;
  485     CoroutineSuspends.second = Final;
tools/clang/lib/Sema/ScopeInfo.cpp
   47   CoroutineSuspends.first = nullptr;
   48   CoroutineSuspends.second = nullptr;
tools/clang/lib/Sema/SemaCoroutine.cpp
 1045   this->InitialSuspend = cast<Expr>(Fn.CoroutineSuspends.first);
 1046   this->FinalSuspend = cast<Expr>(Fn.CoroutineSuspends.second);
tools/clang/lib/Sema/TreeTransform.h
 7185          ScopeInfo->CoroutineSuspends.first == nullptr &&
 7186          ScopeInfo->CoroutineSuspends.second == nullptr &&