Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp2041 Capture *ToCapture = nullptr; in ReadCXXDefinitionData() local
2043 ToCapture = (Capture *)Reader.getContext().Allocate(sizeof(Capture) * in ReadCXXDefinitionData()
2045 Lambda.AddCaptureList(Reader.getContext(), ToCapture); in ReadCXXDefinitionData()
2058 new (ToCapture) in ReadCXXDefinitionData()
2060 ToCapture++; in ReadCXXDefinitionData()
2066 new (ToCapture) Capture(Loc, IsImplicit, Kind, Var, EllipsisLoc); in ReadCXXDefinitionData()
2067 ToCapture++; in ReadCXXDefinitionData()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclCXX.cpp1643 auto *ToCapture = (LambdaCapture *)Context.Allocate(sizeof(LambdaCapture) * in setCaptures() local
1645 Data.AddCaptureList(Context, ToCapture); in setCaptures()
1650 new (ToCapture) LambdaCapture(C); in setCaptures()
1651 ToCapture++; in setCaptures()