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

References

tools/clang/lib/Sema/SemaStmt.cpp
 4281     if (Cap.isInvalid())
 4285     ExprResult Init = S.BuildCaptureInit(Cap, Cap.getLocation(),
 4285     ExprResult Init = S.BuildCaptureInit(Cap, Cap.getLocation(),
 4292     FieldDecl *Field = S.BuildCaptureField(RSI->TheRecordDecl, Cap);
 4295     if (Cap.isThisCapture()) {
 4296       Captures.push_back(CapturedStmt::Capture(Cap.getLocation(),
 4298     } else if (Cap.isVLATypeCapture()) {
 4300           CapturedStmt::Capture(Cap.getLocation(), CapturedStmt::VCK_VLAType));
 4302       assert(Cap.isVariableCapture() && "unknown kind of capture");
 4305         S.setOpenMPCaptureKind(Field, Cap.getVariable(), RSI->OpenMPLevel);
 4307       Captures.push_back(CapturedStmt::Capture(Cap.getLocation(),
 4308                                                Cap.isReferenceCapture()
 4311                                                Cap.getVariable()));