Lines Matching full:numobjects
1124 ExprWithCleanupsBits.NumObjects = objects.size();
1137 ExprWithCleanups::ExprWithCleanups(EmptyShell empty, unsigned numObjects)
1139 ExprWithCleanupsBits.NumObjects = numObjects;
1144 unsigned numObjects) {
1145 size_t size = sizeof(ExprWithCleanups) + numObjects * sizeof(CleanupObject);
1147 return new (buffer) ExprWithCleanups(empty, numObjects);