Lines Matching refs:numObjects
1030 ExprWithCleanupsBits.NumObjects = objects.size();
1043 ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects)
1045 ExprWithCleanupsBits.NumObjects = numObjects;
1049 unsigned numObjects) {
1050 size_t size = sizeof(ExprWithCleanups) + numObjects * sizeof(CleanupObject);
1052 return new (buffer) ExprWithCleanups(empty, numObjects);