Home | History | Annotate | Download | only in AST

Lines Matching refs:NumObjects

1005   ExprWithCleanupsBits.NumObjects = objects.size();
1018 ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects)
1020 ExprWithCleanupsBits.NumObjects = numObjects;
1024 unsigned numObjects) {
1025 size_t size = sizeof(ExprWithCleanups) + numObjects * sizeof(CleanupObject);
1027 return new (buffer) ExprWithCleanups(empty, numObjects);