Home
last modified time | relevance | path

Searched refs:ToCapture (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp1517 auto *ToCapture = (LambdaCapture *)Context.Allocate(sizeof(LambdaCapture) * in setCaptures() local
1519 Data.AddCaptureList(Context, ToCapture); in setCaptures()
1524 new (ToCapture) LambdaCapture(Captures[I]); in setCaptures()
1525 ToCapture++; in setCaptures()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp2038 Capture *ToCapture = nullptr; in ReadCXXDefinitionData() local
2040 ToCapture = (Capture *)Reader.getContext().Allocate(sizeof(Capture) * in ReadCXXDefinitionData()
2042 Lambda.AddCaptureList(Reader.getContext(), ToCapture); in ReadCXXDefinitionData()
2055 new (ToCapture) in ReadCXXDefinitionData()
2057 ToCapture++; in ReadCXXDefinitionData()
2063 new (ToCapture) Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc); in ReadCXXDefinitionData()
2064 ToCapture++; in ReadCXXDefinitionData()