Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp1560 auto *ToCapture = (LambdaCapture *)Context.Allocate(sizeof(LambdaCapture) * in setCaptures() local
1562 Data.AddCaptureList(Context, ToCapture); in setCaptures()
1567 new (ToCapture) LambdaCapture(C); in setCaptures()
1568 ToCapture++; in setCaptures()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp2020 Capture *ToCapture = nullptr; in ReadCXXDefinitionData() local
2022 ToCapture = (Capture *)Reader.getContext().Allocate(sizeof(Capture) * in ReadCXXDefinitionData()
2024 Lambda.AddCaptureList(Reader.getContext(), ToCapture); in ReadCXXDefinitionData()
2037 new (ToCapture) in ReadCXXDefinitionData()
2039 ToCapture++; in ReadCXXDefinitionData()
2045 new (ToCapture) Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc); in ReadCXXDefinitionData()
2046 ToCapture++; in ReadCXXDefinitionData()