Home | History | Annotate | Download | only in AST

Lines Matching refs:Capture

1019 CapturedStmt::Capture *CapturedStmt::getStoredCaptures() const {
1022 // Offset of the first Capture object.
1024 llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>());
1026 return reinterpret_cast<Capture *>(
1032 ArrayRef<Capture> Captures,
1050 // Copy all Capture objects.
1051 Capture *Buffer = getStoredCaptures();
1063 ArrayRef<Capture> Captures,
1070 // | CapturedStmt, Init, ..., Init, S, Capture, ..., Capture |
1080 // Realign for the following Capture array.
1081 Size = llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>());
1082 Size += sizeof(Capture) * Captures.size();
1093 // Realign for the following Capture array.
1094 Size = llvm::RoundUpToAlignment(Size, llvm::alignOf<Capture>());
1095 Size += sizeof(Capture) * NumCaptures;
1114 // extended to capture variables with redeclarations, for example